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 user name and password is required.

Request URL

GET https://{management_server_IP}/identityManagementSystems/cyberark

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

Parameters Type Description
host String IP address or 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_1"
   }, {
      "id": "4",
      "appId": "LXCC",
      "safe": "safe_2",
      "folder": ""
   }],
   "port": "1234"
}