Skip to main content
DELETE
/
bases
/
{databaseId}
/
tables
/
{tableId}
/
records
/
{recordId}
Delete record
curl --request DELETE \
  --url https://tables.fillout.com/api/v1/bases/{databaseId}/tables/{tableId}/records/{recordId} \
  --header 'Authorization: Bearer <token>'
This response does not have an example.
Permanently removes a record from the specified table using either the table ID or table name.
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.

recordId
string<uuid>
required

The UUID of the record to delete

Response

Record deleted successfully

I