Skip to main content
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
message
string
required
The message content provided in the payload.
conversationId
string
required
Unique identifier for the conversation.
botId
string
required
Unique identifier for the bot associated with the conversation.

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.