contactId, clientContactId, email, or phoneNumber1. Note: unlike bulk upsert (which matches on clientContactId, email, phoneNumber1), bulk delete also accepts the internal contactId.207. Inspect the per-item status field to determine the outcome for each contact.curl --location --request DELETE '/contacts/bulk' \
--header 'Authorization: Bearer JWT' \
--header 'Content-Type: application/json' \
--data-raw '{
"contacts": [
{
"contactId": "760819d3-92bb-420c-967a-77f693dfc5d3"
},
{
"clientContactId": "1245451254"
},
{
"email": "info@incomaker.com"
}
]
}'{
"error": "Request exceeds maximum of 100 contacts per bulk operation."
}