GET Asset Tags List API

GET/pcrs/1.0/assetTag/list

With this API, you can get a hierarchical list of asset tags for the subscription.

Sample -  List hierarchical list of asset tags for the subscriptionSample -  List hierarchical list of asset tags for the subscription

API Request

curl -X GET "<gateway_base_url>/pcrs/1.0/assetTag/list" \
  -H "Authorization: <bearer_token>" \
  -H "Accept: application/json"

JSON Response

[
  {
    "id": 2001,
    "name": "Environment",
    "isFavorite": false,
    "children": [
      {
        "id": 2002,
        "name": "Production",
        "isFavorite": false,
        "children": []
      }
    ]
  }
]

 

 

success Thank you! We're glad to hear that this topic was useful.
success We appreciate your feedback. We'll work to make this topic better for you in the future.