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": "r3444rf556tg",
"message": "Hello! How is everyone doing?",
"sender": "johndoe@gmail.com"
}
Request Code Samples
curl --location --request POST 'https://integration.returning.ai/apis/v1/messages/send' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"channelId": "r3444rf556tg",
"message": "Hello! How is everyone doing?",
"sender": "johndoe@gmail.com"
}'
Responses
application/json {
"status": "success",
"message": "Message send successfully"
}
Modified at 2025-09-11 07:35:30