Mailchimp · Schema
SubaccountInfo
Information about a subaccount.
CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique subaccount identifier. |
| name | string | The display name of the subaccount. |
| notes | string | Notes about the subaccount. |
| custom_quota | integer | The manual hourly quota, if set. |
| status | string | The current status of the subaccount. |
| reputation | integer | The subaccount sending reputation (0-100). |
| created_at | string | When the subaccount was created. |
| first_sent_at | string | When the subaccount first sent a message. |
| sent_weekly | integer | Messages sent in the last week. |
| sent_monthly | integer | Messages sent in the last month. |
| sent_total | integer | Total messages sent. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SubaccountInfo",
"title": "SubaccountInfo",
"type": "object",
"description": "Information about a subaccount.",
"properties": {
"id": {
"type": "string",
"description": "The unique subaccount identifier.",
"example": "abc123"
},
"name": {
"type": "string",
"description": "The display name of the subaccount.",
"example": "Example Title"
},
"notes": {
"type": "string",
"description": "Notes about the subaccount.",
"example": "example_value"
},
"custom_quota": {
"type": "integer",
"description": "The manual hourly quota, if set.",
"example": 10
},
"status": {
"type": "string",
"enum": [
"active",
"paused"
],
"description": "The current status of the subaccount.",
"example": "active"
},
"reputation": {
"type": "integer",
"description": "The subaccount sending reputation (0-100).",
"example": 10
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "When the subaccount was created.",
"example": "2026-01-15T10:30:00Z"
},
"first_sent_at": {
"type": "string",
"format": "date-time",
"description": "When the subaccount first sent a message.",
"example": "2026-01-15T10:30:00Z"
},
"sent_weekly": {
"type": "integer",
"description": "Messages sent in the last week.",
"example": 10
},
"sent_monthly": {
"type": "integer",
"description": "Messages sent in the last month.",
"example": 10
},
"sent_total": {
"type": "integer",
"description": "Total messages sent.",
"example": 10
}
}
}