Assign customer to specific agent
Assigns the customer with customer_id to the agent with agent_id.
Path Parameters
- Type: integercustomer
_id requiredIdentifier of the customer.
- Type: integeragent
_id requiredIdentifier of the agent to assign the customer to.
Responses
- application/json
- application/json
Request Example for put/customers/{customer_id}/assign/{agent_id}/
curl https://api.landbot.io/v1/customers/1/assign/1/ \
--request PUT \
--header 'Authorization: Token YOUR_AGENT_TOKEN'
{
"success": true
}