Assign customer to specific agent

Assigns the customer with customer_id to the agent with agent_id.

Path Parameters
  • customer_id
    Type: integer
    required

    Identifier of the customer.

  • agent_id
    Type: integer
    required

    Identifier 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
}