| Description: | Retrieve all users within a realm of a Qeo administrator |
| URL Structure: | https://my.qeo.org/qeo-rest-service/v1/realms/{id}/users |
| HTTP Method: | GET |
| Parameters: |
HTTP Authorization Path parameter: Request Example https://my.qeo.org/qeo-rest-service/v1/realms/103/users |
| Response: |
HTTP 200 OK Body: Contains a list of users found in the realm in JSON format The returned parameters per user in the list:
Response Example {
"users":[{
"id":3,
"realm":103,
"type":"user",
"name":"Martin"
},{
"id":4,
"realm":103,
"type":"user",
"name":"Benny"
},{
"id":5,
"realm":103,
"type":"user",
"name":"Sandra"
}]
}
|