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/b8e4d6a1-3c52-4f7e-9a08-6d1b2c3e4f5a/custom-fields/f4e3d2c1-b0a9-4876-9543-21fedcba0987" \
-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"
}
}