Mailchimp · Schema

SendResult

The result of sending a message to a single recipient.

CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email

Properties

Name Type Description
email string The recipient email address.
status string The sending status for this recipient.
reject_reason string The reason the message was rejected, if applicable.
queued_reason string The reason the message was queued instead of sent immediately.
_id string The unique message ID for this recipient's message.
View JSON Schema on GitHub

JSON Schema

mailchimp-transactional-send-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SendResult",
  "type": "object",
  "description": "The result of sending a message to a single recipient.",
  "properties": {
    "email": {
      "type": "string",
      "description": "The recipient email address."
    },
    "status": {
      "type": "string",
      "description": "The sending status for this recipient."
    },
    "reject_reason": {
      "type": "string",
      "description": "The reason the message was rejected, if applicable."
    },
    "queued_reason": {
      "type": "string",
      "description": "The reason the message was queued instead of sent immediately."
    },
    "_id": {
      "type": "string",
      "description": "The unique message ID for this recipient's message."
    }
  }
}