GET /user-management/remote/users
This table contains all the remote users who have been connected to the device on one occasion at least in the past. It may contain users added by an administrator with a preconfigured welcome page.
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 that access a controller connected in remote to another Radius server are cloned here. | GET |
URL Example: https://0.0.0.0/api/rest/v1/user-management/remote/users
[
{
"href": "/api/rest/v1/user-management/remote/users/1",
"name": "1"
},
{
"href": "/api/rest/v1/user-management/remote/users/2",
"name": "2"
}
]
URL Example: https://0.0.0.0/api/rest/v1/user-management/remote/users
<?xml version="1.0" encoding="utf-8"?>
<Users>
<User>
<Href>/api/rest/v1/user-management/remote/users/1</Href>
<Name>1</Name>
</User>
<User>
<Href>/api/rest/v1/user-management/remote/users/2</Href>
<Name>2</Name>
</User>
</Users>