Retrieves the details of a specified recall management table, including its table structure and configuration.
Operation description
Request
This API retrieves details of a specific recall management table using the provided RecallManagementTableId and InstanceId. Ensure you provide the correct values for these parameters.
Note: The
CanDeletefield indicates whether the data table supports delete operations. Use this value to control delete functionality in your application.The
Fieldslist contains the definitions for each field in the data table, including their name, type, and properties.To monitor data changes, you can configure or query the fluctuation thresholds for row count and size using the corresponding fields.
Try it now
Test
RAM authorization
|
Action |
Access level |
Resource type |
Condition key |
Dependent action |
|
pairec:GetRecallManagementTable |
get |
*All Resource
|
None | None |
Request syntax
GET /api/v1/recallmanagementtables/{RecallManagementTableId} HTTP/1.1
Path Parameters
|
Parameter |
Type |
Required |
Description |
Example |
| RecallManagementTableId |
string |
Yes |
The ID of the recall management table. |
3 |
Request parameters
|
Parameter |
Type |
Required |
Description |
Example |
| InstanceId |
string |
Yes |
The instance ID. |
pairec-cn-test123 |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
The response schema. |
||
| RequestId |
string |
The request ID. |
728C5E01-ABF6-5AA8-B9FC-B3BA05DECC77 |
| RecallManagementTableId |
string |
The data table ID. |
3 |
| Name |
string |
The data table name. |
table-123 |
| Description |
string |
The data table description. |
this is a test |
| Type |
string |
The table type. |
Recall |
| RecallType |
string |
The recall type. |
X2I |
| DataSource |
string |
The data source. |
Api |
| MaxcomputeProjectName |
string |
The MaxCompute project name. |
test |
| MaxcomputeTableName |
string |
The MaxCompute table name. |
table-1 |
| CanDelete |
boolean |
Specifies whether the table can be deleted. |
true |
| IndexVersionId |
string |
The index version ID. |
20250701 |
| IndexEffectiveTime |
string |
The index effective time. |
2021-12-15T23:24:33.132+08:00 |
| Config |
string |
Additional configurations for the table. |
{"item_id":""} |
| EnableRowCountFluctuationThreshold |
boolean |
Specifies whether to enable the fluctuation threshold for the row count. |
true |
| MinRowCountFluctuationThreshold |
integer |
The minimum row count fluctuation threshold. |
10 |
| MaxRowCountFluctuationThreshold |
integer |
The maximum row count fluctuation threshold. |
100 |
| EnableDataSizeFluctuationThreshold |
boolean |
Specifies whether to enable the fluctuation threshold for the data size. |
false |
| MinDataSizeFluctuationThreshold |
integer |
The minimum data size fluctuation threshold. |
10 |
| MaxDataSizeFluctuationThreshold |
integer |
The maximum data size fluctuation threshold. |
100 |
| GmtCreateTime |
string |
The creation time. |
2021-12-15T23:24:33.132+08:00 |
| GmtModifiedTime |
string |
The modification time. |
2021-12-15T23:24:33.132+08:00 |
| MaxcomputeSchema |
string |
The MaxCompute schema. |
default |
| PartitionFields |
string |
The partition fields. |
dt |
| Fields |
array<object> |
A list of fields. |
|
|
object |
The properties of a single field. |
||
| Name |
string |
The field name. |
age |
| Type |
string |
The field type. |
STRING |
| Attributes |
array |
A list of field attributes. |
|
|
string |
A field attribute. |
Primary |
|
| VectorDimension |
integer |
The vector dimension. |
32 |
| VectorMetricType |
string |
The vector metric type. |
L2 |
Examples
Success response
JSON format
{
"RequestId": "728C5E01-ABF6-5AA8-B9FC-B3BA05DECC77",
"RecallManagementTableId": "3",
"Name": "table-123",
"Description": "this is a test",
"Type": "Recall",
"RecallType": "X2I",
"DataSource": "Api",
"MaxcomputeProjectName": "test",
"MaxcomputeTableName": "table-1",
"CanDelete": true,
"IndexVersionId": "20250701",
"IndexEffectiveTime": "2021-12-15T23:24:33.132+08:00",
"Config": "{\"item_id\":\"\"}",
"EnableRowCountFluctuationThreshold": true,
"MinRowCountFluctuationThreshold": 10,
"MaxRowCountFluctuationThreshold": 100,
"EnableDataSizeFluctuationThreshold": false,
"MinDataSizeFluctuationThreshold": 10,
"MaxDataSizeFluctuationThreshold": 100,
"GmtCreateTime": "2021-12-15T23:24:33.132+08:00",
"GmtModifiedTime": "2021-12-15T23:24:33.132+08:00",
"MaxcomputeSchema": "default",
"PartitionFields": "dt",
"Fields": [
{
"Name": "age",
"Type": "STRING",
"Attributes": [
"Primary"
],
"VectorDimension": 32,
"VectorMetricType": "L2"
}
]
}
Error codes
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.