getComponentProperties

Get values for component properties
This command returns all component properties as well as the component's ID and repository ID.

Format

udclient [global-args...] [global-flags...]
  getComponentProperties [parameters]

Parameters

Table 1. Request parameters
Parameter Type Required Description
component string true Name or ID of the component

Example

udclient -username admin -password admin 
  -weburl https://myserver.example.com:8443
  getComponentProperties
  -component JPetStore-APP

Example response

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

Related REST command: Get values for component properties.


Feedback