Skip to main content
PATCH
/
databases
/
{databaseId}
/
tables
/
{tableId}
/
records
/
{recordId}
Update Record
curl --request PATCH \
  --url https://tables-api.softr.io/api/v1/databases/{databaseId}/tables/{tableId}/records/{recordId} \
  --header 'Content-Type: application/json' \
  --header 'Softr-Api-Key: <api-key>' \
  --data '{
  "fields": {}
}'
{
  "data": {
    "id": "<string>",
    "tableId": "<string>",
    "fields": {},
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Softr-Api-Key
string
header
required

Path Parameters

databaseId
string
required
tableId
string
required
recordId
string
required

Body

application/json
fields
object

A map of Field IDs to their new values.

Response

The updated record.

data
object