更新时间:2019-10-15 14:09
用户数据表中的原始数据查询
对当前实例进行特定表和主键的检索,返回结果供客户确认。
GET
/openapi/instances/{instanceId}/tables/{table}/raw-data
注:table 指的是表名,item/user 二选一
参数 | 类型 | 是否必选 | 描述 |
---|---|---|---|
itemId | String | 否 | table 为 item 时必选 |
itemType | String | 否 | table 为 item 时必选 |
userId | String | 否 | table 为 user 时必选 |
userType | String | 否 | table 为 user 时必选 |
参数 | 类型 | 描述 |
---|---|---|
RequestId | String | 当前请求的RequestID |
Result | Map | 查询结果 |
GET /openapi/instances/airec-cn-xxxxx/tables/item/rawdata?itemType=item&itemId=12345
{
"RequestId": "16B78383-2803-4964-9605-37B30C073B0E",
"Result": {
"Detail": {
"ItemId": "1243",
"ItemType": "article",
"SceneId": "1,2,3",
"Xxx": "Xxx"
},
"Messages": [
{
"UploadTimestamp": "2019-09-09T16:00:00.000Z",
"Cmd": "update",
"Content": {
"ItemId": "0",
"ItemType": "article",
"Title": "abc"
...
}
},
{
"UploadTimestamp": "2019-09-09T16:00:00.000Z",
"Cmd": "add",
"Content": {
"ItemId": "0",
"ItemType": "article",
"Title": "abc"
...
}
}
]
}
}
在文档使用中是否遇到以下问题
更多建议
匿名提交