Queries raw data from a user data table.
Operation description
This operation retrieves raw data from a user data table in the current instance using a primary key. The results are returned for confirmation.
Try it now
Test
RAM authorization
Request syntax
GET /v2/openapi/instances/{instanceId}/tables/{table}/raw-data HTTP/1.1
Path Parameters
|
Parameter |
Type |
Required |
Description |
Example |
| instanceId |
string |
Yes |
The instance ID. |
airec-cn-o400whm78004 |
| table |
string |
Yes |
The name of the Artificial Intelligence Recommendation table. Valid values: `item` and `user`. |
item |
Request parameters
|
Parameter |
Type |
Required |
Description |
Example |
| itemId |
string |
No |
Required if `table` is set to `item`. |
112 |
| itemType |
string |
No |
Required if `table` is set to `item`. |
video |
| userId |
string |
No |
Required if `table` is set to `user`. |
111 |
| userType |
string |
No |
Required if `table` is set to `user`. |
app |
| imei |
string |
No |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
|||
| result |
object |
The query results. |
xxx |
| code |
string |
The error code. |
InternalServerError |
| Message |
string |
The error details. |
An internal server error occurred |
| requestId |
string |
The request ID. |
8F81A922-6C81-46D6-B78C-CC35E16B1691 |
Examples
Success response
JSON format
{
"result": {
"test": "test",
"test2": 1
},
"code": "InternalServerError",
"Message": "An internal server error occurred",
"requestId": "8F81A922-6C81-46D6-B78C-CC35E16B1691"
}
Error codes
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.