Delete Entities Operations
The delete_entities_operations table contains data about delete uploads in the organization.
This table can be used to determine which delete uploads deleted which entities, as well as metadata about the delete upload such as when it was created.
Columns
| Column Name | Description | Type | Nullable |
|---|---|---|---|
| id | The numerical identifier of the object. | INT8 | No |
| created_by_id | The numerical identifier of the user who created this delete upload. Relates to the id column in the users table. |
INT4 | Yes |
| status | The status of the delete upload. 0 for in progress, 1 for done. |
INT4 | Yes |
| total_sent | The total number of entities in the delete upload that were attempted to be deleted. | INT4 | Yes |
| total_deleted | The total number of entities in the delete upload that were successfully deleted. | INT4 | Yes |
| not_found | The total number of entities in the delete upload that were not found when the delete was attempted. | INT4 | Yes |
| completed_at | The UTC timestamp when this upload was completed. | TIMESTAMP | Yes |
| action_builder_ids | An array of internal entity unique identifiers that were attempted to be deleted. | VARCHAR | Yes |
| created_at | The UTC timestamp when this object was created. | TIMESTAMP | No |
| updated_at | The UTC timestamp when this object was updated. | TIMESTAMP | No |