GET /user-management-v2/server
FROM API REVISION 6.0
This is the server configuration of the user-management.
Two modes can be configured :
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.
The $select system query option allows clients to request a limited set of properties for each entity.
The value pass in the parameter can be:
*"(star): This will show all child elements.," (comma).If there is no value after the select query option, the parameter will be ignored. All the values that are not specified will not be printed in the response.
The $expand system query option specifies the related resources to be included in line with retrieved resources.
The value passed in the parameter can be:
*"(star): This will expand all child elements.," (comma).The $expand system query option can be used with the $levels query option, to expand recursively.
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: Server
| Property Name | Type | Description | Method |
|---|---|---|---|
| Oidc | Object | This object contains the configuration parameters for the OIDC Server. | GET POST |
| Radius | Object | This object contains the configuration parameters for the Radius Server. | GET POST |
URL Example: https://0.0.0.0/api/rest/v1/user-management-v2/server
{
"radius": {
"href": "/api/rest/v1/user-management-v2/server/radius",
"name": "radius"
},
"oidc": {
"href": "/api/rest/v1/user-management-v2/server/oidc",
"name": "oidc"
}
}
URL Example: https://0.0.0.0/api/rest/v1/user-management-v2/server
<?xml version="1.0" encoding="utf-8"?>
<Server>
<Oidc>
<Href>/api/rest/v1/user-management-v2/server/oidc</Href>
<Name>oidc</Name>
</Oidc>
<Radius>
<Href>/api/rest/v1/user-management-v2/server/radius</Href>
<Name>radius</Name>
</Radius>
</Server>