Get available connectors in a given directory

get

/iam/governance/applicationmanagement/api/v1/applications/connectors

Lists connector packages present in a given directory. Gives list of connectors from default directory, if no directory given

Request

Query Parameters
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : CIBean
Type: object
Show Source
Back to Top

Examples

This example demonstrates the method of getting available connectors in a given directory. if no directory name is specified, it returns the list of connectors in the default directory. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

curl  -H "Content-Type: application/json"  -X GET  -u username:password  https://pseudo.com/iam/governance/applicationmanagement/api/v1/applications/connectors?directory=%2Fscratch%2Fmyusername%2Fdevtools%2FMiddleware%2Fidm%2Fserver%2FConnectorDefaultDirectory

Example of Response Body

The following example shows the contents of the response body in JSON format.

[
  {
    "bundlePkgPath": "/scratch/myfolder/devtools/Middleware/idm/server/ConnectorDefaultDirectory/msft_activedirectory",
    "ciXMLPath": "/scratch/myfolder/devtools/Middleware/idm/server/ConnectorDefaultDirectory/msft_activedirectory/configuration/ActiveDirectory-CI.xml",
    "connectorName": "ActiveDirectory",
    "connectorVersion": "11.1.1.6.0"
  },
  {
    "bundleJarPath": "/scratch/myfolder/devtools/Middleware/idm/server/ConnectorDefaultDirectory/DBUM-11.1.1.8.0/bundle/org.identityconnectors.dbum-1.0.1116.jar",
    "bundlePkgPath": "/scratch/myfolder/devtools/Middleware/idm/server/ConnectorDefaultDirectory/DBUM-11.1.1.8.0",
    "ciXMLPath": "/scratch/myfolder/devtools/Middleware/idm/server/ConnectorDefaultDirectory/DBUM-11.1.1.8.0/configuration/DBUM-Oracle-CI.xml",
    "connectorName": "Oracle DB User Management Connector",
    "connectorVersion": "11.1.1.8.0"
  }
]
Back to Top