简体中文
{ "fields": { "Name": "John Doe", "Age": 31, "Email": "john.doe@example.com" } }
fields
null,
"name"
"id"
"dbFieldName"
{ fields: { "Name": "John Doe", "Age": 30 } }
{ fields: { "fldABCDEFGHIJKLMN": "John Doe", "fldOPQRSTUVWXYZ12": 30 } }
true
{ "User table": "张三" }
{ "Date": "2023-05-15" }
{ "Assigned To": "John Doe" }
{ "id": "rec123456789ABCDE", "fields": { "Name": "John Doe", "Age": 31, "Email": "john.doe@example.com" } }
curl -X PATCH 'https://app.teable.cn/api/table/__tableId__/record/__recordId__' \ -H 'Authorization: Bearer __token__' \ -H 'Content-Type: application/json' \ -d '{ "record": { "fields": { "Name": "John Doe", "Age": 31 } } }'