brevo · Schema

WhatsAppCampaignList

Properties

Name Type Description
count integer Total number of WhatsApp campaigns.
campaigns array List of WhatsApp campaign summaries.
View JSON Schema on GitHub

JSON Schema

brevo-whatsappcampaignlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WhatsAppCampaignList",
  "title": "WhatsAppCampaignList",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "format": "int64",
      "description": "Total number of WhatsApp campaigns."
    },
    "campaigns": {
      "type": "array",
      "description": "List of WhatsApp campaign summaries.",
      "items": {
        "$ref": "#/components/schemas/WhatsAppCampaign"
      }
    }
  }
}