Delete Customer Field Value
gorgias_delete_customer_field_valueRemove a custom field value from a customer by specifying the customer ID and field ID. Use this to clear an assigned value without deleting the field definition.
Instructions
DELETE /api/customers/{customer_id}/custom-fields/{id} — Remove a custom field value from a customer. This removes the value assignment on the customer — it does NOT delete the custom field definition. The path 'id' is the custom field definition ID (field.id from GET /api/customers/{customer_id}/custom-fields). Returns 204 No Content on success.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The custom field definition ID (field.id from GET /api/customers/{customer_id}/custom-fields) | |
| customer_id | Yes | The ID of the customer whose custom field value is to be deleted. |