v1

latestOpenAPI 3.0.3Proprietary2026-08-0656136286.9 KB
Companies Tables

Remove Entities from Companies Table

Remove specific company IDs from a table.

Billing: Free.

delete/v3/companies/tables/{table_id}/entities

Path parameters

table_idstring required

The table's ID.

Request body

entityIdsstring[] required

Accepts either the encrypted token (v{N}.…, as returned by Get Entities) or the legacy numeric ID. Unresolved IDs are echoed back in invalidIds in the exact form you sent them.

Example request

{
  "entityIds": [
    "10042851",
    "10042852"
  ],
  "owner": {
    "email": "user@example.com"
  }
}

Response

Entities removed

Example response

{
  "data": {
    "removed": 10,
    "invalidIds": []
  },
  "billing": {
    "creditsCharged": 3,
    "resultsReturned": 1
  }
}