Skip to main content
POST
/
api
/
conversation
/
{conversationId}
/
send-message
Send a message to a conversation
curl --request POST \
  --url https://your-instance.example.com/api/conversation/{conversationId}/send-message \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "body": "<string>",
  "attachments": [
    {
      "filename": "<string>",
      "url": "<string>",
      "contentType": "<string>"
    }
  ],
  "isInternal": true
}
'
{
  "success": true,
  "message": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

conversationId
string
required

Body

application/json
body
string
required

Message content

attachments
object[]
isInternal
boolean

Whether this is an internal/whisper message

Response

Message sent

success
boolean
message
object