Table Execution
Delete Table Rows
Delete rows by ID.
DELETE
Delete Table Rows
Overview
This endpoint permanently removes one or more rows from a table. Deletion is bulk and row-ID based. Send the row IDs you want to remove inrows.
Use it when you want to clean up bad inputs, remove duplicates, or drop rows you no longer want to run or keep.
Example request
Key parameters
table_id(required): target table identifier.rows(required): array of row IDs to delete.
Success signal
A successful response returns the deleted row IDs.Common errors
401 Unauthorized
Check that your header is Authorization: Bearer ${EXTRUCT_API_TOKEN}.
404 Not Found
The table ID is invalid or unavailable in your workspace.
422 Unprocessable Entity
Most often caused by missing rows, malformed JSON, or invalid row ID values.
Related endpoints
Related guides
Delete Table Rows