sendExternalMultimediaMessageToCtlivesocial
Sends a multimedia message to a whatsapp customer.
status:HTTP POST /livechat/:domain/sendExternalMultimediaMessageToCtlivesocial
Path Variables:
Name | Mandatory | Type | Description |
---|---|---|---|
domain | status:NO | status:STRING | Unique domain identifier |
Authorization: see Authentication mechanisms
Request Body:
Type: status:JSON
Name | Mandatory | Type | Description |
---|---|---|---|
customerPhoneNumber | status:YES | status:STRING | customer phone number |
servicePhoneNumber | status:YES | status:STRING | whatsapp business number |
document | status:YES | status:STRING | base64 string |
messageType | status:YES | status:STRING | can assume one of the following values:
|
fileName | status:YES | status:STRING | file name (extension included) |
Response:
Type: status:JSON
Name | Type | Description |
---|---|---|
result | status:BOOLEAN | If true, the service response was performed correctly |
error | status:NULL / status:STRING | Contains the error description if an error has occurred in the request |
Example:
Request
http://<hostname>:<port>/livechat/default/sendExternalMultimediaMessageToCtlivesocial
Request body
{
"customerPhoneNumber": "393403603062",
"servicePhoneNumber": "3902124122690",
"document": "iVBORw0KG...",
"messageType": "IMAGE",
"fileName": "infobip-logo.png"
}
Response
{
"result": true,
"error": null
}