Skip to main content
PATCH
/
bases
/
{databaseId}
/
tables
/
{tableId}
/
records
/
{recordId}
Update record
curl --request PATCH \
  --url https://tables.fillout.com/api/v1/bases/{databaseId}/tables/{tableId}/records/{recordId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "record": {
    "Email": "john.doe@newcompany.com",
    "Priority": "low"
  }
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"fields": {
"Name": "John Doe",
"Email": "john.doe@newcompany.com",
"Priority": "low"
},
"record": {
"fwtJyga6dso": "John Doe",
"k8mNp2xQ9rL": "john.doe@newcompany.com",
"vB3zXc7Hf2w": "low"
},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
Modifies specific field values in an existing record using either the table ID or table name.
Only provided fields will be updated

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 update

Body

application/json
record
object
required

Fields to update with their new values (using field names or field IDs as keys). Only include fields you want to change.

Example:
{
"Email": "john.doe@newcompany.com",
"Priority": "low"
}

Response

Record updated successfully

id
string<uuid>
required

Unique UUID identifier for the record

fields
object
required

Record data with field names as keys

Example:
{
"Name": "John Doe",
"Email": "john.doe@newcompany.com",
"Priority": "low"
}
record
object
required

Record data with field IDs as keys

Example:
{
"fwtJyga6dso": "John Doe",
"k8mNp2xQ9rL": "john.doe@newcompany.com",
"vB3zXc7Hf2w": "low"
}
createdAt
string<date-time>
required

ISO timestamp of when the record was created

updatedAt
string<date-time>
required

ISO timestamp of when the record was last updated

I