All Products
Search
Document Center

Data Management:ListLogicTableRouteConfig

Last Updated:Oct 21, 2024

Queries the routing algorithms of a logical table.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
TableIdlongYes

The ID of the logical table. You can call the ListLogicTables operation to query the ID of the logical table.

1****
TidlongNo

The ID of the tenant. You can call the GetUserActiveTenant operation to query the tenant ID.

3***

Response parameters

ParameterTypeDescriptionExample
object
RequestIdstring

The ID of the request.

7C6A0D7D-B034-59F6-854C-32425AC6****
ErrorCodestring

The error code returned.

MissingTableId
ErrorMessagestring

The error message returned.

TableId is mandatory for this action.
Successboolean

Indicates whether the request was successful. Valid values:

  • true: The request was successful.
  • false: The request failed.
true
LogicTableRouteConfigListarray<object>

The routing algorithms.

LogicTableRouteConfigobject
RouteKeystring

The unique key of the routing algorithm.

1
RouteExprstring

The routing algorithm expression.

#id#%16\t
TableIdlong

The ID of the logical table.

4****

Examples

Sample success responses

JSONformat

{
  "RequestId": "7C6A0D7D-B034-59F6-854C-32425AC6****",
  "ErrorCode": "MissingTableId",
  "ErrorMessage": "TableId is mandatory for this action.",
  "Success": true,
  "LogicTableRouteConfigList": {
    "LogicTableRouteConfig": [
      {
        "RouteKey": "1",
        "RouteExpr": "#id#%16\\t",
        "TableId": 0
      }
    ]
  }
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
No change history