deleteTableRows

Allows selective deletion of rows or complete clearance of a table.

POST/v1/tables/{table}/rows/delete

Authorization

AuthorizationBearer
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Header parameters

x-bot-idstring
Bot id
x-integration-id?string
Integration id
x-integration-alias?string
Integration alias
x-integration-name?string
Integration name
x-user-id?string
User Id
x-user-role?string
User Role

Path parameters

tablestring
The table's name or unique identifier for targeting specific table operations.

Request body

Identifiers of the rows to be deleted.

ids?number[]
filter?object
Filter 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?boolean
Flag 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.

deletedRowsnumber
job?object