Get a list of system registry keys.

get

/learn.rest/v1/systemRegistryKeys

Request

Query Parameters
  • If set to true, payload includes the total number of rows that satisfies the request. Use of parameter determines if the 'last' link is displayed for a pageable collection.
Security
Back to Top

Response

Supported Media Types

200 Response

Metadata-catalog collection fetched.
Body ()
Root Schema : SystemRegistryKeysResponse
Type: object
Response object for System registry keys.
Show Source
Example:
{
    "items":[
        {
            "id":"GeneratePassword",
            "value":"1",
            "category":"RestApiSettings",
            "links":[
                {
                    "rel":"canonical",
                    "href":"https://{url}/learn.rest/v1/systemRegistryKeys/GeneratePassword"
                }
            ]
        },
        {
            "id":"TriggerUserMessages",
            "value":"0 or 1",
            "category":"RestApiSettings",
            "links":[
                {
                    "rel":"canonical",
                    "href":"https://{url}/learn.rest/v1/systemRegistryKeys/TriggerUserMessages"
                }
            ]
        }
    ],
    "links":[
        {
            "rel":"canonical",
            "href":"https://{url}/learn.rest/v1/systemRegistryKeys"
        }
    ]
}
Nested Schema : items
Type: array
array of items
Show Source
Nested Schema : User
Type: object
Response object for system registry.
Show Source
Example:
{
    "id":"GeneratePassword",
    "value":"1",
    "category":"RestApiSettings",
    "links":[
        {
            "rel":"canonical",
            "href":"https://{url}/learn.rest/v1/systemRegistryKeys/GeneratePassword"
        }
    ]
}
Nested Schema : SystemRegistryKeyLinkItems
Type: object
Show Source
Example:
{
    "rel":"canonical",
    "href":"{url}/learn.rest/v1/users/456"
}

401 Response

Authentication refused for provided credentials or token invalid.
Headers

500 Response

Internal server error.
Back to Top