Skip to main content
POST
/
v1
/
chat
/
channels
/
{channel_id}
/
message
Send a chat message
curl --request POST \
  --url https://unify.bundleup.io/v1/chat/channels/{channel_id}/message \
  --header 'Authorization: Bearer <token>' \
  --header 'BU-Connection-ID: <bu-connection-id>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "text": "<string>"
}
'
{
  "response": {
    "data": {}
  }
}

Authorizations

Authorization
string
header
required

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

Headers

Authorization
string
required

API Key for authentication

BU-Connection-ID
string
required

Connection ID for the integration

BU-Include-Raw
enum<string> | null
default:false

Whether to include raw response from the provider

Available options:
true,
false

Path Parameters

channel_id
string
required

Channel ID

Body

application/json
text
string
required

Markdown-formatted message text

Response

Successful Response For message

response
object
required