GET /user-management/remote/users/{userId}/
This resource is used to show all the remote user's details.
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.
This is the user's ID.
Object Name: User
Property Name | Type | Description | Method |
---|---|---|---|
Id | Integer | This property is the remote user's ID. | GET |
Username | String | This property is the user's name | GET POST |
WelcomePage | String | This property is the user's welcome page. | GET POST |
Roles | Array<String> | This is the remote user's roles. | GET |
URL Example: https://0.0.0.0/api/rest/v1/user-management/remote/users/1
{
"id": 1,
"welcomePage": "/new/welcome/page",
"username": "bryan",
"roles": null
}
URL Example: https://0.0.0.0/api/rest/v1/user-management/remote/users/1
<?xml version="1.0" encoding="utf-8"?>
<User>
<Id>1</Id>
<Username>bryan</Username>
<WelcomePage>/new/welcome/page</WelcomePage>
<Roles />
</User>