POST
/
api
/
v1
/
chat
/
send-message
Send-Message
curl --request POST \
  --url https://kratos.api.toolzz.com.br/api/v1/chat/send-message \
  --header 'Content-Type: application/json' \
  --data '{
  "message": "<string>",
  "conversation_id": "<string>",
  "description": "<string>"
}'
{
  "message": {
    "content": "<string>",
    "conversationId": "<string>"
  }
}

Parameters

message
string
A mensagem que vai ser enviada
conversation_id
string
Id da conversa
description
string
O id do bot

Response Description

Below you will see the description of the subscription response
message
object
required
The message object containing content and conversation details.
content
string
required
The content of the message.
conversationId
string
required
Unique identifier for the conversation.