Send image
Sends an image to the customer with customer_id.
Path Parameters
- Type: integercustomer
_id requiredIdentifier of the customer.
Body
required
application/json
- Type: stringFormat: uriurlrequired
Public URL of the image to send.
- Type: stringcaption
Optional caption attached to the image.
Responses
- application/json
- application/json
- application/json
- application/json
Request Example for post/customers/{customer_id}/send_image/
curl https://api.landbot.io/v1/customers/1/send_image/ \
--request POST \
--header 'Content-Type: application/json' \
--header 'Authorization: Token YOUR_AGENT_TOKEN' \
--data '{
"url": "https://www.helloumi.com/wp-content/uploads/2016/05/umi_face_favicon.png",
"caption": "Umi"
}'
{
"success": true
}