Mailchimp · Schema
RejectEntry
An entry in the rejection blacklist.
CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email
Properties
| Name | Type | Description |
|---|---|---|
| string | The rejected email address. | |
| reason | string | The reason the address is on the blacklist. |
| detail | string | Extended details about the rejection. |
| created_at | string | When the entry was added to the blacklist. |
| last_event_at | string | When the last event occurred for this address. |
| expires_at | string | When the rejection expires (if applicable). |
| expired | boolean | Whether the rejection has expired. |
| subaccount | string | The subaccount this rejection applies to, if any. |
| sender | object | Sender statistics associated with the rejection. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "RejectEntry",
"type": "object",
"description": "An entry in the rejection blacklist.",
"properties": {
"email": {
"type": "string",
"description": "The rejected email address."
},
"reason": {
"type": "string",
"description": "The reason the address is on the blacklist."
},
"detail": {
"type": "string",
"description": "Extended details about the rejection."
},
"created_at": {
"type": "string",
"description": "When the entry was added to the blacklist."
},
"last_event_at": {
"type": "string",
"description": "When the last event occurred for this address."
},
"expires_at": {
"type": "string",
"description": "When the rejection expires (if applicable)."
},
"expired": {
"type": "boolean",
"description": "Whether the rejection has expired."
},
"subaccount": {
"type": "string",
"description": "The subaccount this rejection applies to, if any."
},
"sender": {
"type": "object",
"description": "Sender statistics associated with the rejection."
}
}
}