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
{
    "isAsync": false,
    "name": [
        "string"
    ],
    "id": [
        0
    ],
    "group": "string",
    "normalize": false
}
boolean
isAsync
Optional

isAsync

array of string
name
Optional
Constraints: minItems: 1

name

array of integer
id
Optional
Constraints: minItems: 1

id

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

Returns Array of system_property_get_system_properties_result_item of type(s) application/json
[
    {
        "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