cURL
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": "[email protected]", "Priority": "low" } }'
200
example
{ "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "data": { "fwtJyga6dso": "John Doe", "k8mNp2xQ9rL": "[email protected]", "vB3zXc7Hf2w": "low" }, "fields": { "Name": "John Doe", "Email": "[email protected]", "Priority": "low" }, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z"}
Updates an existing record’s field values using either table ID or table name.
Was this page helpful?