Langburp
Messages

Send a message to a connection user

Send a message to a connection user

POST
/v1/connections/{connectionId}/users/{connectionUserId}/messages

Authorization

x-api-key<token>

In: header

x-secret-key<token>

In: header

Request Body

application/jsonRequired
text
Required
string

Path Parameters

connectionId
Required
string
connectionUserId
Required
string
curl -X POST "https://api.langburp.com/v1/connections/string/users/string/messages" \
  -H "x-api-key: <token>" \
  -H "x-secret-key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Hello, world!"
  }'

The message was sent successfully

{
  "message": {
    "id": "msg_123"
  }
}