Allianz · Schema

EmailSentResponse

Confirmation that an email has been sent

Financial ServicesInsuranceAsset Management

Properties

Name Type Description
message_id string Unique identifier for the sent message
status string Status of the email delivery
sent_at string Timestamp when the email was sent
View JSON Schema on GitHub

JSON Schema

api-connect-email-sent-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/allianz-docs/refs/heads/main/json-schema/api-connect-email-sent-response-schema.json",
  "title": "EmailSentResponse",
  "description": "Confirmation that an email has been sent",
  "type": "object",
  "properties": {
    "message_id": {
      "type": "string",
      "description": "Unique identifier for the sent message",
      "example": "msg-500456"
    },
    "status": {
      "type": "string",
      "description": "Status of the email delivery",
      "enum": [
        "sent",
        "pending",
        "failed"
      ],
      "example": "sent"
    },
    "sent_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the email was sent",
      "example": "2026-04-19T10:30:00Z"
    }
  }
}