This endpoints sends a reply to a message as a specified user.Authorization#
Bearer token Required
Found in the platform under community settings > API keys.
Permission: Reply Messages
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"messageId": "9985hhht8853hyhee",
"message": "Hello, yes this is right!",
"sender": "johndoe"
}
Request Code Samples
curl --location --request POST 'https://integration.returning.ai/apis/v1/messages/reply' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"messageId": "9985hhht8853hyhee",
"message": "Hello, yes this is right!",
"sender": "johndoe"
}'
Responses
application/json {
"status": "success",
"message": "Message reply successfully"
}
Modified at 2025-09-08 07:22:58