Brevo · Schema

CreateUpdateCategory

MarketingMarketing AutomationEmail MarketingTransactional EmailSMS MarketingWhatsAppCampaignsCRMSalesE-CommerceLoyaltyEventLive ChatEmailSMSAutomationMessagingContacts

Properties

Name Type Description
id string Unique identifier for the category.
name string Name of the category.
url string URL of the category page.
View JSON Schema on GitHub

JSON Schema

brevo-createupdatecategory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateUpdateCategory",
  "title": "CreateUpdateCategory",
  "type": "object",
  "required": [
    "id",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the category."
    },
    "name": {
      "type": "string",
      "description": "Name of the category."
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL of the category page."
    }
  }
}