Delete field

Deletes field_name from the customer with customer_id.

Path Parameters
  • customer_id
    Type: integer
    required

    Identifier of the customer.

  • field_name
    Type: string Pattern: ^[a-z0-9_]+$
    required

    Name of the custom field. Only lowercase Latin letters, numbers, and _ are allowed.

Responses
  • 204

    Field deleted.

  • application/json
Request Example for delete/customers/{customer_id}/fields/{field_name}/
curl 'https://api.landbot.io/v1/customers/1/fields/{field_name}/' \
  --request DELETE \
  --header 'Authorization: Token YOUR_AGENT_TOKEN'
No Body