Delete Table

Permanently delete a table and all its data

DELETE/tables/{table_id}
Requires Bearer authentication

Permanently delete a table and all of its rows. This action cannot be undone.

Path Parameters

table_idstringrequired

The unique identifier of the table to delete.

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