Description: Retrieves all realms belonging to the Qeo administrator
URL Structure: https://my.qeo.org/qeo-rest-service/v1/realms
HTTP Method: GET
Parameters: HTTP Authorization
Response:

HTTP 200 OK
Content-Type: application/json

Body: Contains the list of realms in JSON format:
          {"realms":[{"id":...,"name":"...","type":"realm" },{ ...},{... }] }

          Each realm contains 3 fields: 
              "id"       : value of type long, representing the realm identifier
              "name" : UTF-8 string representing the realm name
              "type"   : type of object returned (always "realm")

 

Example response
{
   "realms":[{
               "id" : 101,
               "type" : "realm",
               "name" : "Big Meeting Room Realm"
             },{
               "id" : 102,
               "type" : "realm",
               "name" : "Main Office Realm"
             }] 
}