GET /identityManagementSystems
Use this method to return a list of all configured identity-management systems.
Note
This API requires Lenovo XClarity Administrator v3.2.0 or later.
Authentication
Authentication with username and password is required.
Request URL
GET https://{management_server_IP}/identityManagementSystems
Query parameters
None
Request body
None
Response codes
Code | Description | Comments |
---|---|---|
200 | OK | The request completed successfully. |
500 | Internal Server Error | An internal error occurred. A descriptive error message is returned in the response body. |
Response body
When the request is successful, the following attributes are returned. If the request fails, standard message attributes are returned (see Status messages).
The response body is an array of objects. Each object that contains information about each identity-management system.
Parameters | Type | Description | ||
---|---|---|---|---|
host | String | Hostname of the identity-management systems | ||
name | String | Type of identity-management system | ||
paths | Array of objects | Information about each path to the identity-management system | ||
id | String | Path ID | ||
appId | String | Application ID | ||
safe | String | Safe | ||
folder | String | Folder | ||
port | String | Port for the identity-management system |
The following example is returned if the request is successful.
[{
"host": "cyberarkHostname",
"name": "CyberArk",
"paths": [{
"id": "2",
"appId": "LXCC",
"safe": "safe_1",
"folder": "folder_11"
}, {
"id": "4",
"appId": "LXCC",
"safe": "safe_2",
"folder": ""
}],
"port": "1234"
}]
Give documentation feedback