brevo · Schema
CreateAutomatedMessage
Properties
| Name | Type | Description |
|---|---|---|
| visitorId | string | Unique identifier of the visitor to send the automated message to. |
| text | string | Text content of the automated message. |
| agentId | string | Unique identifier of the agent to attribute the message to. |
| groupId | string | Group identifier for routing the conversation. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateAutomatedMessage",
"title": "CreateAutomatedMessage",
"type": "object",
"required": [
"visitorId",
"text"
],
"properties": {
"visitorId": {
"type": "string",
"description": "Unique identifier of the visitor to send the automated message to."
},
"text": {
"type": "string",
"description": "Text content of the automated message."
},
"agentId": {
"type": "string",
"description": "Unique identifier of the agent to attribute the message to."
},
"groupId": {
"type": "string",
"description": "Group identifier for routing the conversation."
}
}
}