Delete Ticket Custom Field Value
gorgias_delete_ticket_fieldDelete a specific custom field value from a ticket without removing the field definition. Use ticket ID and field ID to clear the assigned value.
Instructions
DELETE /api/tickets/{ticket_id}/custom-fields/{id} — Remove a custom field value from a ticket. This removes the value assignment on the ticket — it does NOT delete the custom field definition. The path 'id' is the custom field definition ID (field.id from GET /api/tickets/{ticket_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/tickets/{ticket_id}/custom-fields) | |
| ticket_id | Yes | The unique ID of the ticket whose custom field value to delete |