AhaSend · JSON Structure

Openapi V2 Message Schedule Structure

MessageSchedule schema from AhaSend API

Type: object Properties: 2
EmailTransactional EmailDeveloper ToolsSMTPWebhooks

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

Properties

first_attempt expires

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-message-schedule-structure.json",
  "name": "MessageSchedule",
  "description": "MessageSchedule schema from AhaSend API",
  "type": "object",
  "properties": {
    "first_attempt": {
      "type": "datetime",
      "description": "The time to make the first attempt for delivering the message (RFC3339 format)",
      "example": "2025-03-15T14:30:00Z"
    },
    "expires": {
      "type": "datetime",
      "description": "Expire and drop the message if not delivered by this time (RFC3339 format)",
      "example": "2025-03-15T14:30:00Z"
    }
  },
  "example": {
    "first_attempt": "2023-12-25T10:30:00Z",
    "expires": "2023-12-26T10:30:00Z"
  }
}