Fetch a System Property

get

/iam/governance/api/v1/systemconfiguration/systemproperty/{keyword}

Fetches a particular System Property with the specified keyword.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

successful operation.
Body ()
Root Schema : SystemProperty
Type: object
Show Source

400 Response

Invalid input.
Back to Top

Examples

The following example shows how to retreive a particular system property with the specified keyword by submitting a GET request on the REST resource using cURL. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

curl -i -X GET -u username:password  \
--header 'Content-Type: application/json' \
'http://pseudo.com/iam/governance/adminservice/api/v1/systemconfiguration/systemproperty/demoKey2'

Example of Response Body

The following example shows the JSON response for a request to retrieve the system properties with the specified keyword:

{
   "id":"168",
   "ptyKeyword":"demoKey2",
   "ptyValue":"demoValue2",
   "ptyName":"demoName2",
   "ptyDataLevel":"0"
}
Back to Top