AhaSend · Schema

Bounce

Bounce schema from AhaSend API

EmailTransactional EmailDeveloper ToolsSMTPWebhooks

Properties

Name Type Description
classification string Bounce classification
count integer Number of bounces
View JSON Schema on GitHub

JSON Schema

openapi-v2-bounce-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-schema/openapi-v2-bounce-schema.json",
  "title": "Bounce",
  "description": "Bounce schema from AhaSend API",
  "type": "object",
  "properties": {
    "classification": {
      "type": "string",
      "description": "Bounce classification",
      "example": "example_value"
    },
    "count": {
      "type": "integer",
      "description": "Number of bounces",
      "example": 1
    }
  },
  "required": [
    "classification",
    "count"
  ]
}