brevo · Schema

CreateContactList

Properties

Name Type Description
name string Name for the new contact list.
folderId integer ID of the folder to place the list in.
View JSON Schema on GitHub

JSON Schema

brevo-createcontactlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateContactList",
  "title": "CreateContactList",
  "type": "object",
  "required": [
    "name",
    "folderId"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the new contact list."
    },
    "folderId": {
      "type": "integer",
      "format": "int64",
      "description": "ID of the folder to place the list in."
    }
  }
}