Authorization: Bearer ********************{
"table_key": "tbl_xxx",
"records": [
{
"record_key": "rec_abc",
"fields": {
"age": 30
}
},
{
"record_title": "李四",
"fields": {
"age": 25
}
}
]
}curl --location 'https://app.emooai.com/open-api/v1/data/records/batch-update' \
--header 'Emoo-User-Id: ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"table_key": "tbl_xxx",
"records": [
{
"record_key": "rec_abc",
"fields": {
"age": 30
}
},
{
"record_title": "李四",
"fields": {
"age": 25
}
}
]
}'{
"code": 200,
"message": "success",
"data": [
{
"id": 0,
"record_key": "string",
"fields": {
"property1": "string",
"property2": "string"
},
"created_by": {
"id": "string",
"name": "string"
},
"created_at": "2019-08-24T14:15:22.123Z",
"updated_by": {
"id": "string",
"name": "string"
},
"updated_at": "2019-08-24T14:15:22.123Z"
}
]
}