Skip to main content
POST
/
accounts
/
{account_id}
/
conversations
/
{conversation_id}
/
appointments
Criar Agendamento
curl --request POST \
  --url https://your-chatwoot.aifocus.dev/api/v1/accounts/{account_id}/conversations/{conversation_id}/appointments \
  --header 'Content-Type: application/json' \
  --header 'api_access_token: <api-key>' \
  --data '
{
  "title": "Reunião de Apresentação",
  "scheduled_at": "2025-01-20T14:00:00Z",
  "notes": "<string>"
}
'

Authorizations

api_access_token
string
header
required

Path Parameters

account_id
integer
required
conversation_id
integer
required

Body

application/json
title
string
Example:

"Reunião de Apresentação"

scheduled_at
string<date-time>
Example:

"2025-01-20T14:00:00Z"

notes
string

Response

201

Agendamento criado