Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
Topic Id When Your Channel Is Topic
{
"channelId": "<channel-id-from-get-channel-list>",
"message": "<message-you-want-to-send>",
"sender": "<username-or-email-of-user>"
}
Request samples
curl --location --request POST 'https://integration.returning.ai/apis/v1/messages/send' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"channelId": "<channel-id-from-get-channel-list>",
"message": "<message-you-want-to-send>",
"sender": "<username-or-email-of-user>"
}'
Responses
application/json {
"status": "success",
"message": "Message send successfully"
}
Modified at 2025-05-29 01:09:50