deleteTableRows
Allows selective deletion of rows or complete clearance of a table.
POST
/v1/tables/{table}/rows/deleteAuthorization
AuthorizationBearerBearer authentication header of the form Bearer <token>, where <token> is your auth token.
Header parameters
x-bot-idstringBot id
x-integration-id?stringIntegration id
x-integration-alias?stringIntegration alias
x-integration-name?stringIntegration name
x-user-id?stringUser Id
x-user-role?stringUser Role
Path parameters
tablestringThe table's name or unique identifier for targeting specific table operations.
Request body
Identifiers of the rows to be deleted.
ids?number[]filter?objectFilter to apply when deleting rows. Deletion with a filter is performed asynchronously in batches and returns a job object to track progress. Example: \{ "createdAt": \{ "$lt": "2026-01-01" \} \}
deleteAllRows?booleanFlag to delete all rows. Use with caution as this action is irreversible.
Response
Confirms the number of rows successfully deleted. When using a filter, returns a job object for tracking async progress.
deletedRowsnumberjob?object