Authorization: Bearer ********************{
"table_key": "tbl_xxx",
"records": [
{
"name": "张三",
"age": 28
}
]
}curl --location 'https://app.emooai.com/open-api/v1/data/records' \
--header 'Emoo-User-Id: ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"table_key": "tbl_xxx",
"records": [
{
"name": "张三",
"age": 28
}
]
}'{
"code": 200,
"message": "success",
"data": [
{
"id": 1,
"record_key": "rec_abc",
"fields": {
"name": "张三",
"age": 28
},
"created_by": {
"id": "ou_xxx",
"name": "操作人"
},
"created_at": "2026-01-01T00:00:00Z",
"updated_by": null,
"updated_at": null
}
]
}