System Property Get System Properties

System Property Get System Properties

Gets all configured system properties.

Privileges required:

READ SYSTEM_PROPERTY

Request
URI
POST
https://{api_host}/portal/rest/systemProperty/getSystemProperties
COPY
Request Body
{
    "group": "string",
    "normalize": false
}
string
group
Optional

Filter for properties matching a given group prefix

boolean
normalize
Optional

If true, transforms query result from rowset to single object with attribute names matching property names fetched

Responses
200

Request was successfully processed

[
    {
        "id": 0,
        "created": "string",
        "name": "string",
        "value": "string",
        "defaultValue": "string",
        "isReadOnly": false,
        "isPassword": false,
        "dataType": "string",
        "description": "string",
        "modified": "string"
    }
]

400
Returns generic_400 of type(s) application/json
Operation doesn't return any data structure

500
Returns generic_500 of type(s) application/json
Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/portal/rest/systemProperty/getSystemProperties