Get all Sub-Realms

Retrieve a list of all Sub-Realms in the application. These are sometimes called "Application".

Request

Endpoint: /api/sub-realms
Method: GET
Headers: Accept: application/vnd.cloudlx.v1+json
Authorization: Bearer <access_token>

Response

Example:

                                
    {
        "sub-realms": [
            {
                "id": 1,
                "realm_id": 1,
                "name": "Datacentre Interconnect",
                "description": "..."
            },
            ...
        ]
    }
                                
                            
id Description The id of the sub-realm
Type Integer
Example 1
name Description The name of the sub-realm
Type String
Example 44
description Description A human readable description of the sub-realm
Type Nullable String
Example "..."

Back to top