Skip to main content

GET /identityManagementSystems/cyberark

Use this method to return information about the CyberArk identity-management system configuration.

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/cyberark

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).

ParametersTypeDescription
hostStringIP address or hostname 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_1"
}, {
"id": "4",
"appId": "LXCC",
"safe": "safe_2",
"folder": ""
}],
"port": "1234"
}