Send Attachment Message
Send an image, video or document attachment to a Revora customer on any connected platform.
Send an image, video or document attachment to a Revora customer on any connected platform.
POST /stable/open/customers/send-attachment-message
Base URL: https://api.myalice.ai. Authenticate with the X-Myalice-Api-Key
header.
Body parameters
The ID of the customer in Revora.
One of image, video or document.
A publicly accessible URL of the attachment.
Example
curl -X POST "https://api.myalice.ai/stable/open/customers/send-attachment-message" \
-H "X-Myalice-Api-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"customer_id": "1022",
"attachment_type": "image",
"attachment_url": "https://example.com/logo.png"
}'{
"id": "msg_c34d…",
"project_id": 343,
"timestamp": "2026-07-02T09:30:00Z",
"function_name": "send_attachment_message",
"message": "Attachment sent",
"status": "sent",
"extra": { "customer_id": 1022, "success": true }
}Errors
Unexpected error. Body: { "error": string, "code": string, "success": false }.
Unauthorized — missing or invalid API key.