Description
This endpoint allows you to send a video message via RCS. You can include interactive suggestions for quick replies.
Your API key for authentication.
Your workspace ID for authentication.
Body
The recipient’s phone number in international format. Must include the country code without the leading plus sign (+) or any spaces, dashes, or other special characters. Format: country code followed by the phone number. Example: 919876543210 (India: country code 91 + number 9876543210).
The URL of the video to send. The video must be publicly accessible.
The RCS bot ID to use for sending the message.
Array of interactive suggestions (quick reply buttons) to include with the message.
(Optional) To receive post-back notifications about the sent message as it is delivered or failed. When a message status changes (delivered, failed, etc.), a notification will be sent to this URL. See Postback Notifications for the payload format and field descriptions.
(Optional) The data that will be sent back on the post_back_url with the notification. This can be used as an identifier for the sent message if the client wants to track or correlate messages with their own system. See Postback Notifications for how it appears in the notification.
Response
Indicates whether the request was successful. true if the request was accepted and queued, false otherwise.
Success message when the request succeeded, or error message when it failed.
Present only when success is true. Unique identifier for this request; use it for tracking and for correlating with postback notifications.
{
"success": true,
"message": "RCS request queued successfully",
"request_id": "f8df74d1-11fa-4485-b164-b9a65358f4fc"
}