Skip to main content
POST
/
messaging
/
messages
Send a message to a conversation
curl --request POST \
  --url https://open.beatpass.ca/api/v1/messaging/messages \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "conversation_id": 123,
  "message_text": "<string>"
}
'
{
  "status": "error",
  "message": "Reason for the error",
  "errors": {
    "some_data_1": "Error message for data 1",
    "some_data_2": "Error message for data 2"
  }
}

Authorizations

Authorization
string
header
required

API access is invite-only. Contact contact@beatpass.ca to request access. Once approved, generate tokens from Account Settings → Developers. Include as: Authorization: Bearer {token}. Tokens expire after 90 days.

Body

application/json
conversation_id
integer
required
message_text
string
required
Maximum string length: 2000

Response

Message sent

Last modified on February 21, 2026