Delete Rows
Delete rows by filter criteria or by an explicit list of row IDs. Pass either a `filter` object or a `rowIds` array.
DELETE
/api/v1/tables/{tableId}/rowsAuthorization
apiKey X-API-Key<token>
Your Sim API key (personal or workspace). Generate one from the Sim dashboard under Settings > API Keys.
In: header
Path Parameters
tableId*string
The unique identifier of the table.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X DELETE \ "https://www.sim.ai/api/v1/tables/{tableId}/rows" \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "workspaceId": "YOUR_WORKSPACE_ID", "rowIds": ["row_abc123", "row_def456"] }'{
"success": true,
"data": {
"message": "Rows deleted successfully",
"deletedCount": 2,
"deletedRowIds": [
"row_abc123",
"row_def456"
]
}
}{
"error": "string",
"details": [
{}
]
}{
"error": "string"
}{
"error": "string"
}{
"error": "string"
}{
"error": "string"
}