Skip to main content
DELETE
/
bases
/
{databaseId}
/
tables
/
{tableId}
/
fields
/
{fieldId}
Delete field
curl --request DELETE \
  --url https://tables.fillout.com/api/v1/bases/{databaseId}/tables/{tableId}/fields/{fieldId} \
  --header 'Authorization: Bearer <token>'
{
  "deleted": true
}

Documentation Index

Fetch the complete documentation index at: https://zite.com/llms.txt

Use this file to discover all available pages before exploring further.

Permanently removes a field from the specified table using either the field ID or field name.
Deleting a field will permanently remove all data stored in that field across all records. 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.

fieldId
string
required

The unique identifier of the field. You can also use the field name instead of the ID. Note: You cannot delete the primary field (the first field in a table).

Response

Resource deleted successfully

deleted
boolean
required
Example:

true