Get the names of all the Connector Servers

get

/iam/governance/applicationmanagement/api/v1/applications/connectorservers

Get the list of names of all the Connector Servers

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : List
Type: object
Show Source
Nested Schema : Item
Type: array
Show Source
Nested Schema : items
Type: object
Back to Top

Examples

This example demonstrates the method getting list of names of all the connector servers. 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/connectorservers

Example of Response Body

The following example shows the contents of the response body in JSON format. In this example, each value is name of a connector server.

{
  "Item": [
    {
      "type": "string",
      "value": "CS12"
    },
    {
      "type": "string",
      "value": "CS22"
    },
    {
      "type": "string",
      "value": "CS33"
    },
    {
      "type": "string",
      "value": "Active Directory Connector Server"
    },
    {
      "type": "string",
      "value": "CS"
    }
  ]
}

Back to Top