Skip to main content
DELETE
/
bases
/
{databaseId}
/
tables
/
{tableId}
Delete table
curl --request DELETE \
  --url https://tables.fillout.com/api/v1/bases/{databaseId}/tables/{tableId} \
  --header 'Authorization: Bearer <token>'
This response does not have an example.
Permanently removes a table and all its associated data from the database using either the table ID or table name.
Deleting a table will permanently remove the table, all its fields, views, and all records stored in the table. This action cannot be undone.

Authorizations

Authorization
string
header
required

Enter your Fillout API key. Format: Bearer <api_key>

Path Parameters

databaseId
string
required

The unique identifier of the database

tableId
string
required

The unique identifier of the table. You can also use the table name instead of the ID.

Response

Table deleted successfully

I