Messages
Send a message to a conversation
Send a message to a conversation
Authorization
x-api-key
<token>In: header
x-secret-key
<token>In: header
Request Body
application/json
RequiredThe message to send
text
Required
stringPath Parameters
connectionId
Required
stringconversationId
Required
stringcurl -X POST "https://api.langburp.com/v1/connections/string/conversations/conv_123/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"
}
}