Mailchimp · Schema
SenderInfo
Information and statistics for a sender address.
CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email
Properties
| Name | Type | Description |
|---|---|---|
| address | string | The sender email address. |
| created_at | string | When the sender was first used. |
| sent | integer | Total number of messages sent from this address. |
| hard_bounces | integer | Total hard bounces. |
| soft_bounces | integer | Total soft bounces. |
| rejects | integer | Total rejects. |
| complaints | integer | Total spam complaints. |
| unsubs | integer | Total unsubscribes. |
| opens | integer | Total opens. |
| clicks | integer | Total clicks. |
| unique_opens | integer | Unique opens. |
| unique_clicks | integer | Unique clicks. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SenderInfo",
"title": "SenderInfo",
"type": "object",
"description": "Information and statistics for a sender address.",
"properties": {
"address": {
"type": "string",
"format": "email",
"description": "The sender email address.",
"example": "example_value"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "When the sender was first used.",
"example": "2026-01-15T10:30:00Z"
},
"sent": {
"type": "integer",
"description": "Total number of messages sent from this address.",
"example": 10
},
"hard_bounces": {
"type": "integer",
"description": "Total hard bounces.",
"example": 10
},
"soft_bounces": {
"type": "integer",
"description": "Total soft bounces.",
"example": 10
},
"rejects": {
"type": "integer",
"description": "Total rejects.",
"example": 10
},
"complaints": {
"type": "integer",
"description": "Total spam complaints.",
"example": 10
},
"unsubs": {
"type": "integer",
"description": "Total unsubscribes.",
"example": 10
},
"opens": {
"type": "integer",
"description": "Total opens.",
"example": 10
},
"clicks": {
"type": "integer",
"description": "Total clicks.",
"example": 10
},
"unique_opens": {
"type": "integer",
"description": "Unique opens.",
"example": 10
},
"unique_clicks": {
"type": "integer",
"description": "Unique clicks.",
"example": 10
}
}
}