AhaSend · JSON Structure

Openapi V2 Create Message Response Structure

CreateMessageResponse schema from AhaSend API

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

CreateMessageResponse 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-create-message-response-structure.json",
  "name": "CreateMessageResponse",
  "description": "CreateMessageResponse 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/CreateSingleMessageResponse"
      },
      "description": "List of messages and their statuses",
      "example": [
        {
          "object": "message",
          "id": "500123",
          "recipient": {},
          "status": "queued",
          "error": "example_value"
        }
      ]
    }
  },
  "required": [
    "object",
    "data"
  ]
}