## Delete a custom field `DELETE https://getkollek.com/api/collection-types/{collectionType}/custom-fields/{customField}` Delete a custom field from a collection type. **Permissions:** Owners and editors. Viewers get a 404 response. ### Path parameters - `collectionType` (integer, required): The ID of the collection type the field belongs to. - `customField` (integer, required): The ID of the custom field. **Returns:** An empty response. ### Example request ```bash curl https://getkollek.com/api/collection-types/1/custom-fields/2 \ -X DELETE \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 204` The response has no body.