Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"messageId": "<message-id-you-want-to-reply>",
"message": "<message-you-want-send>",
"sender": "<username-or-email-of-user>"
}
Request samples
curl --location --request POST 'https://integration.returning.ai/apis/v1/messages/reply' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"messageId": "<message-id-you-want-to-reply>",
"message": "<message-you-want-send>",
"sender": "<username-or-email-of-user>"
}'
Responses
application/json {
"status": "success",
"message": "Message reply successfully"
}
Modified at 2025-06-09 09:03:15