POST
/
api
/
v1
/
sessions
/
{sessionId}
/
continueChat
curl --request POST \
  --url https://bots-viewer.toolzz.ai/api/v1/sessions/{sessionId}/continueChat \
  --header 'Content-Type: application/json' \
  --data '{
  "message": "<any>"
}'
{
  "messages": [
    {
      "id": "<string>",
      "type": "<string>",
      "content": "<any>"
    }
  ]
}

Parameters

sessionId
string

publicId: The session ID of the bot to continue a chat for.

Body Description

message
any
required

The message sent.

Response Description

Below you will see the description of the function continue chat.

messages
object[]
required

The messages content and information in the bot session.