brevo · Schema
EmailCampaignList
Properties
| Name | Type | Description |
|---|---|---|
| count | integer | Total number of email campaigns matching the filter criteria. |
| campaigns | array | List of email campaign summaries. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EmailCampaignList",
"title": "EmailCampaignList",
"type": "object",
"properties": {
"count": {
"type": "integer",
"format": "int64",
"description": "Total number of email campaigns matching the filter criteria."
},
"campaigns": {
"type": "array",
"description": "List of email campaign summaries.",
"items": {
"$ref": "#/components/schemas/EmailCampaign"
}
}
}
}