Skip to main content

Delete Contact Custom Field

Remove a custom field value from a contact.

Request

DELETE /contacts/{contactUuid}/custom-fields/{fieldUuid}

Path Parameters

ParameterTypeDescription
contactUuidstringContact's UUID
fieldUuidstringCustom field's UUID

This endpoint is idempotent — if the contact has no value set for the field, the request is silently ignored and a 204 No Content response is returned.

Example Request

curl -X DELETE "https://email.easy.tools/api/v1/contacts/daccf9ab-b134-4d18-835d-473fc11e6b24/custom-fields/431a5cd9-a69b-48c3-b25f-2031a2b5a582" \
-H "Authorization: Bearer YOUR_API_TOKEN"

Response

Success Response (204 No Content)

No response body.

Error Responses

Not Found Error (404) - Contact

{
"error": {
"code": "RESOURCE_NOT_FOUND",
"message": "Contact not found"
}
}

Not Found Error (404) - Field

{
"error": {
"code": "RESOURCE_NOT_FOUND",
"message": "Custom field not found"
}
}