AhaSend · JSON Structure

Openapi V2 Bounce Statistics Structure

BounceStatistics schema from AhaSend API

Type: object Properties: 3 Required: 3
EmailTransactional EmailDeveloper ToolsSMTPWebhooks

BounceStatistics is a JSON Structure definition published by AhaSend, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

from_timestamp to_timestamp bounces

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-structure/openapi-v2-bounce-statistics-structure.json",
  "name": "BounceStatistics",
  "description": "BounceStatistics schema from AhaSend API",
  "type": "object",
  "properties": {
    "from_timestamp": {
      "type": "datetime",
      "description": "Start time of the statistics bucket",
      "example": "2025-03-15T14:30:00Z"
    },
    "to_timestamp": {
      "type": "datetime",
      "description": "End time of the statistics bucket",
      "example": "2025-03-15T14:30:00Z"
    },
    "bounces": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Bounce"
      },
      "description": "Bounce count per bounce classification",
      "example": [
        {
          "classification": "example_value",
          "count": 1
        }
      ]
    }
  },
  "required": [
    "from_timestamp",
    "to_timestamp",
    "bounces"
  ]
}