Skip to main content

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

CodeDescriptionComments
200OKThe request completed successfully.
500Internal Server ErrorAn 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.

ParametersTypeDescription
hostStringHostname of the identity-management systems
nameStringType of identity-management system
pathsArray of objectsInformation about each path to the identity-management system
 idStringPath ID
 appIdStringApplication ID
 safeStringSafe
 folderStringFolder
portStringPort 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"
}]