Get values for component properties

This command returns all component properties.

Request

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

Example response

[
  {
    "id": "3702f391-09e1-4550-903a-d5ae286c94aa",
    "name": "Prop1",
    "value": "value1",
    "description": "",
    "secure": false
  }
]

Related CLI command: getComponentProperties.


Feedback