Send location
Sends a geographic location to the customer with customer_id.
Path Parameters
- Type: integercustomer
_id requiredIdentifier of the customer.
Body
required
application/json
- Type: numberFormat: doublelatituderequired
- Type: numberFormat: doublelongituderequired
Responses
- application/json
- application/json
- application/json
- application/json
Request Example for post/customers/{customer_id}/send_location/
curl https://api.landbot.io/v1/customers/1/send_location/ \
--request POST \
--header 'Content-Type: application/json' \
--header 'Authorization: Token YOUR_AGENT_TOKEN' \
--data '{
"latitude": 0,
"longitude": 0
}'
{
"success": true
}