GET /user-management/local/users
User access to this controller and to other controllers that are using this controller as their RADIUS server are managed by adding them to the users collection.
Used when you are operating a browser without access to the header parameter. This allows you to choose which encoding you want to use for the response:
All these resources can be used according what the resource allows.
If this parameter is not in the request, the Application/Json will be chosen by default.
There are multiple possible values (according the resource):
The first two are the most often used.
Object Name: Users
Property Name | Type | Description | Method |
---|---|---|---|
Users | Array<User> | User access to this controller and to other controllers that are using this controller as their RADIUS server are managed by adding them to this array. | GET |
URL Example: https://0.0.0.0/api/rest/v1/user-management/local/users
[
{
"href": "/api/rest/v1/user-management/local/users/1",
"name": "1"
},
{
"href": "/api/rest/v1/user-management/local/users/2",
"name": "2"
},
{
"href": "/api/rest/v1/user-management/local/users/3",
"name": "3"
}
]
URL Example: https://0.0.0.0/api/rest/v1/user-management/local/users
<?xml version="1.0" encoding="utf-8"?>
<Users>
<User>
<Href>/api/rest/v1/user-management/local/users/1</Href>
<Name>1</Name>
</User>
<User>
<Href>/api/rest/v1/user-management/local/users/2</Href>
<Name>2</Name>
</User>
<User>
<Href>/api/rest/v1/user-management/local/users/3</Href>
<Name>3</Name>
</User>
</Users>