PATCH
/
table
/
{tableId}
/
record
curl --request PATCH \
  --url https://app.teable.cn/api/table/%7BtableId%7D/record \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/json' \
  --data '{"fieldKeyType":"id","typecast":true,"records":[{"id":"string","fields":{"property1":null,"property2":null}}],"order":{"viewId":"string","anchorId":"string","position":"before"}}'
[
  {
    "id": "<string>",
    "name": "<string>",
    "fields": {},
    "autoNumber": 123,
    "createdTime": "<string>",
    "lastModifiedTime": "<string>",
    "createdBy": "<string>",
    "lastModifiedBy": "<string>",
    "permissions": {},
    "undeletable": true
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tableId
string
required

Body

application/json

Multiple Update records

Response

200 - application/json
Returns the records data after update.

The response is of type object[].