brevo · Schema
ContactListDetail
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier of the list. |
| name | string | Name of the list. |
| totalSubscribers | integer | Total number of subscribers in the list. |
| totalBlacklisted | integer | Total number of blacklisted contacts in the list. |
| folderId | integer | ID of the folder containing the list. |
| createdAt | string | UTC date-time when the list was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ContactListDetail",
"title": "ContactListDetail",
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int64",
"description": "Unique identifier of the list."
},
"name": {
"type": "string",
"description": "Name of the list."
},
"totalSubscribers": {
"type": "integer",
"format": "int64",
"description": "Total number of subscribers in the list."
},
"totalBlacklisted": {
"type": "integer",
"format": "int64",
"description": "Total number of blacklisted contacts in the list."
},
"folderId": {
"type": "integer",
"format": "int64",
"description": "ID of the folder containing the list."
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "UTC date-time when the list was created."
}
}
}