Skip to main content
POST
/
v1
/
table
/
{table_uuid}
/
rows
/
delete
Delete rows from a table
curl --request POST \
  --url https://api.databar.ai/v1/table/{table_uuid}/rows/delete \
  --header 'Content-Type: application/json' \
  --header 'x-apikey: <x-apikey>' \
  --data '
{
  "row_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}
'
{
  "status": "deleted"
}

Headers

x-apikey
string
required

API Key for authentication

Path Parameters

table_uuid
string<uuid>
required

The UUID of the table

Body

application/json
row_ids
string<uuid>[]
required

List of row UUIDs to delete.

Minimum array length: 1

Response

Rows deleted successfully