curl -X DELETE https://api.crewship.dev/v1/tables/tbl_abc123xyz789 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true
}
{
"error": {
"message": "Table not found"
}
}
Tables
Delete Table
Delete a table and all of its rows
DELETE
/
v1
/
tables
/
{id}
curl -X DELETE https://api.crewship.dev/v1/tables/tbl_abc123xyz789 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true
}
{
"error": {
"message": "Table not found"
}
}
Path Parameters
string
required
Table ID
Response
boolean
true when the table was deletedcurl -X DELETE https://api.crewship.dev/v1/tables/tbl_abc123xyz789 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true
}
{
"error": {
"message": "Table not found"
}
}
Notes
- Deleting a table also deletes all rows in that table.
- This action cannot be undone.