Skip to main content
POST
/
api
/
v1
/
assistant
/
threads
/
{id}
/
messages
Send message to a thread.
curl --request POST \
  --url https://api.revong.com/api/v1/assistant/threads/{id}/messages \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "content": "<string>"
}'

Authorizations

Authorization
string
header
required

Bearer token with Platform JWT token or API Key.

Path Parameters

id
string
required

Body

application/json
content
string
required

Content of the message, max length 4096 characters.

Response

Message sent.