Contacts Tables
Remove Entities from Contacts Table
Remove specific contact IDs from a table.
Billing: Free.
delete/v3/contacts/tables/{table_id}/entities
Path parameters
table_idstring required
The table's ID.
Request body
Example request
{
"entityIds": [
"10042851",
"10042852"
],
"owner": {
"email": "user@example.com"
}
}Response
Entities removed
Example response
{
"data": {
"removed": 10,
"invalidIds": []
},
"billing": {
"creditsCharged": 3,
"resultsReturned": 1
}
}