Skip to main content
POST
/
workspace
/
{workspace_id}
/
table
/
{table_id}
/
content
/
bulk
/
delete
Delete multiple records by their IDs in a single operation
curl --request POST \
  --url https://your-xano-instance.xano.io/api:meta/workspace/{workspace_id}/table/{table_id}/content/bulk/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "row_ids": [
    1
  ]
}
'
{
  "success": [
    "<string>"
  ],
  "success_total": 123,
  "error": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

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

Headers

x-data-source
string
default:live

Path Parameters

workspace_id
string
required
table_id
string
required

Body

row_ids
string[]

Response

Success!

success
string[]
success_total
integer<int64>
error
string[]