Dichat
POST/label/chat

Adiciona etiqueta a um chat

Descrição

Adiciona etiqueta a um chat

Exemplo de requisição

curl -X POST 'https://api-server.dichat.com.br/label/chat' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "Chat": "5511999999999",
    "LabelId": "label_123"
  }'

Respostas

200Response
application/json
{
  "code": 200,
  "data": {
    "Details": "Label added successfully"
  },
  "success": true
}