Delete Row

Remove a row from a table

DELETE/tables/{table_id}/rows/{row_id}
Requires Bearer authentication

Permanently delete a row from a table. This action cannot be undone.

Path Parameters

table_idstringrequired

The unique identifier of the table.

row_idstringrequired

The unique identifier of the row to delete.

DELETE/tables/{table_id}/rows/{row_id}
curl -X DELETE "https://api.vastal.agency/v1/tables/tbl_abc123/rows/row_001" \
-H "Authorization: Bearer YOUR_API_KEY"
200Success
{
"success": true,
"message": "Row deleted successfully"
}