AhaSend · JSON Structure

Openapi V2 Deliverability Statistics Structure

DeliverabilityStatistics schema from AhaSend API

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

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

Properties

from_timestamp to_timestamp reception_count delivered_count deferred_count bounced_count failed_count suppressed_count opened_count clicked_count

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-structure.json",
  "name": "DeliverabilityStatistics",
  "description": "DeliverabilityStatistics 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"
    },
    "reception_count": {
      "type": "int32",
      "description": "Number of messages accepted for delivery",
      "example": 1
    },
    "delivered_count": {
      "type": "int32",
      "description": "Number of messages delivered",
      "example": 1
    },
    "deferred_count": {
      "type": "int32",
      "description": "Number of messages deferred",
      "example": 1
    },
    "bounced_count": {
      "type": "int32",
      "description": "Number of messages bounced",
      "example": 1
    },
    "failed_count": {
      "type": "int32",
      "description": "Number of messages failed",
      "example": 1
    },
    "suppressed_count": {
      "type": "int32",
      "description": "Number of messages suppressed",
      "example": 1
    },
    "opened_count": {
      "type": "int32",
      "description": "Number of messages opened at least once",
      "example": 1
    },
    "clicked_count": {
      "type": "int32",
      "description": "Number of messages that have at least one link in them clicked.",
      "example": 1
    }
  },
  "required": [
    "from_timestamp",
    "to_timestamp"
  ]
}