Delete Table
Permanently delete a table and all its data
DELETE
/tables/{table_id}Requires
Bearer authenticationPermanently delete a table and all of its rows. This action cannot be undone.
Path Parameters
table_idstringrequiredThe 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"
const response = await fetch( 'https://api.vastal.agency/v1/tables/tbl_abc123', { method: 'DELETE', headers: { 'Authorization': 'Bearer YOUR_API_KEY' } } );
200Success
{ "success": true, "message": "Table deleted successfully" }