/customfields/:customFieldId:/values/:valueId
Custom Field and Value Deletion
To delete a value from a custom field, you can use the following API request:
HTTP Request
DELETE https://api.air.inc/v1/customfields/{customFieldId}/values/{valueId}
Parameters
- customFieldId (string, required): The ID of the custom field.
- valueId (string, required): The ID of the custom field value to delete.
Example cURL Command
curl --request DELETE \
--url https://api.air.inc/v1/customfields/{customFieldId}/values/{valueId}
Response
- 204: Default response indicating that the value was successfully deleted.