Send text message
Sends a text message to the customer with customer_id.
Path Parameters
- Type: integercustomer
_id requiredIdentifier of the customer.
Body
required
application/json
- Type: stringmessagerequired
Message body.
Responses
- application/json
- application/json
- application/json
- application/json
Request Example for post/customers/{customer_id}/send_text/
curl https://api.landbot.io/v1/customers/1/send_text/ \
--request POST \
--header 'Content-Type: application/json' \
--header 'Authorization: Token YOUR_AGENT_TOKEN' \
--data '{
"message": "Hello"
}'
{
"success": true
}