Delete Row
Remove a row from a table
DELETE
/tables/{table_id}/rows/{row_id}Requires
Bearer authenticationPermanently delete a row from a table. This action cannot be undone.
Path Parameters
table_idstringrequiredThe unique identifier of the table.
row_idstringrequiredThe 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"
const response = await fetch( 'https://api.vastal.agency/v1/tables/tbl_abc123/rows/row_001', { method: 'DELETE', headers: { 'Authorization': 'Bearer YOUR_API_KEY' } } );
200Success
{ "success": true, "message": "Row deleted successfully" }