AhaSend · JSON Structure

Openapi V2 Deliverability Statistics Response Structure

DeliverabilityStatisticsResponse schema from AhaSend API

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

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

Properties

object data

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-deliverability-statistics-response-structure.json",
  "name": "DeliverabilityStatisticsResponse",
  "description": "DeliverabilityStatisticsResponse schema from AhaSend API",
  "type": "object",
  "properties": {
    "object": {
      "type": "string",
      "enum": [
        "list"
      ],
      "description": "Object type identifier",
      "example": "list"
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DeliverabilityStatistics"
      },
      "description": "Array of deliverability statistics",
      "example": [
        {
          "from_timestamp": "2025-03-15T14:30:00Z",
          "to_timestamp": "2025-03-15T14:30:00Z",
          "reception_count": 1,
          "delivered_count": 1,
          "deferred_count": 1
        }
      ]
    }
  },
  "required": [
    "object",
    "data"
  ]
}