Last Updated on : 2023-06-15 04:50:02
Query the cross-level sub-assets on pages. If a value of the asset ID (asset_id
) is passed in, use the asset ID as the root node and query all sub-assets on pages. If a value of the asset name (asset_name
) is passed in, perform a fuzzy search by the asset name and query all sub-assets on pages. If both fields have no value, query all sub-assets under a specified project.
POST: /v1.1/iot-02/cross-level-sub-assets
Description of body
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
asset_id | String | false | The asset ID. | |
asset_name | String | false | The name of a specified asset. | |
last_row_key | String | false | The row key of the last entry on each page. | |
page_size | Integer | false | The number of entries returned on each page. | |
level | Integer | false | The level of a specified asset. |
Parameter name | Type | Description |
---|---|---|
result | HighwayAssetsCrossLevelPageResponse | The returned result of querying the sub-assets. |
Description of result
Parameter name | Type | Description |
---|---|---|
has_next | Boolean | Specifies whether there is a next page. |
count | Integer | The total number of entries. |
last_row_key | String | The row key of the last entry on each page. |
page_size | Integer | The number of entries returned on each page. |
list | List | The list of asset results. |
Description of list
Parameter name | Type | Description |
---|---|---|
level | Integer | The hierarchical level of a specified asset. The root node is set to 0 . |
asset_id | String | The asset ID. |
parent_asset_id | String | The ID of the parent asset. The top-level ID is set to -1 . |
asset_name | String | The name of a specified asset. |
asset_full_name | String | The full name of a specified asset. |
POST: /v1.1/iot-02/cross-level-sub-assets
{
"asset_id": "137493****62112",
"asset_name": "Asset",
"last_row_key": "13750****74592",
"page_size": 10,
"level": 0
}
{
"last_row_key": "13750****74592",
"count": 3,
"list": [
{
"level": 0,
"asset_id": "137493****62112",
"asset_full_name": "Asset AAA",
"asset_name": "Asset A",
"parent_asset_id": "-1"
},
{
"level": 0,
"asset_id": "13750****74592",
"asset_full_name": "Asset BBB",
"asset_name": "Asset B",
"parent_asset_id": "137493****62112"
}
],
"t": 1616663281459,
"success": true,
"has_next": "false",
"page_size": 10
}
For more information, see error code.
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback