Mailchimp · Schema
UserInfo
Account-level information for the authenticated Mandrill user.
CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email
Properties
| Name | Type | Description |
|---|---|---|
| username | string | The account username. |
| created_at | string | When the account was created. |
| public_id | string | A unique public identifier for the account. |
| reputation | integer | The account sending reputation (0-100). |
| hourly_quota | integer | The hourly email sending quota. |
| backlog | integer | The number of messages in the send queue. |
| stats | object | Account-level sending statistics. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "UserInfo",
"type": "object",
"description": "Account-level information for the authenticated Mandrill user.",
"properties": {
"username": {
"type": "string",
"description": "The account username."
},
"created_at": {
"type": "string",
"description": "When the account was created."
},
"public_id": {
"type": "string",
"description": "A unique public identifier for the account."
},
"reputation": {
"type": "integer",
"description": "The account sending reputation (0-100)."
},
"hourly_quota": {
"type": "integer",
"description": "The hourly email sending quota."
},
"backlog": {
"type": "integer",
"description": "The number of messages in the send queue."
},
"stats": {
"type": "object",
"description": "Account-level sending statistics."
}
}
}