Send text message

Sends a text message to the customer with customer_id.

Path Parameters
  • customer_id
    Type: integer
    required

    Identifier of the customer.

Body
required
application/json
  • message
    Type: string
    required

    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
}