Delete Contact Custom Field
Deletes a specified contact custom field from your account. This action is permanent and cannot be undone. Any values stored against this field on existing contacts will also be removed.
Endpoint
DELETE
v5/contactcustomfield/{field_id}
Requires authentication
Path Parameters
The custom field to delete.
field_id
string
required
The ID of the contact custom field to delete.
Response
Returns a status object confirming the deletion.
result_ok
boolean
Whether the request succeeded.
Examples
Request (cURL)
curl -X DELETE "https://api.alchemer.com/v5/contactcustomfield/YOUR_FIELD_ID?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
"result_ok": true
}