Return all tags on a component

Request

GET https://{hostname}:{port}
    /cli/component/tag?{parameters}
Table 1. Request parameters
Parameter Type Required Description
component string true Name or ID of the component

Example response

[
  {
    "id": "13a1604a-ecea-4f07-b85e-6b395ade161a",
    "name": "Tag1",
    "color": "#FFFFFF",
    "description": "",
    "objectType": "Component"
  },
  {
    "id": "d140ae5a-dfb0-477a-910b-762cc0d99cc6",
    "name": "Tag2",
    "color": "#7fff00",
    "description": "",
    "objectType": "Component"
  }
]

Related CLI command: getTagsOnComponent.


Feedback