This endpoint sends a message to a channel as a specified user.Authorization#
Bearer token Required
Found in the platform under community settings > API keys.
Permission: Send Messages Request
Body Params application/json
{
"channelId": "68f3b1388f16c94fa011cdff",
"message": "Hello! How is everyone doing?"
}
Request Code Samples
curl --location --request POST 'https://integration.returning.ai/apis/v1/messages/send' \
--header 'Authorization: 748d009203bb962713a1463074beeb766bf7a6c3dc617b6b45372d98db12077b' \
--header 'Content-Type: application/json' \
--data-raw '{
"channelId": "68f3b1388f16c94fa011cdff",
"message": "Hello! How is everyone doing?"
}'
Responses
application/json {
"status": "success",
"message": "Message send successfully"
}
Modified at 2025-11-03 17:27:10