Get all connections for an application

get

/epm/rest/v1/applications/{applicationId}/connections

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : ItemsConnections
Type: object
Show Source
Nested Schema : items
Type: array
Read Only: true
Show Source
Nested Schema : Connection
Type: object
Show Source
Nested Schema : ConnectionInfo
Type: object
Show Source
Back to Top

Examples

The following example shows how to retrieve the list of connections for an application by submitting a get request on the REST resource using cURL.

cURL Command

curl --user epm_cloud_user -X GET \
  https://servername.fa.us2.oraclecloud.com/epm/rest/v1/applications/e63e92c4-4727-4999-97f2-50498cb40ec7/connections

Example of Response Body

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

{
  "items": [
    {
      "id": "445e92f5-e232-4100-b709-a875c06cf294",
      "name": "Corporate Planning Server",
      "description": "",
      "connectionDetails": "{\"url\":\"http://epbcsserver/\",\"domain\":\"myidenitydomain\",\"username\":\"user\",\"password\":\"daa64d99-9c88-4109-a75b-c9756b7d0796\"}",
      "primary": true,
      "links": [
        {
          "rel": "self",
          "href": "https://servername.fa.us2.oraclecloud.com/epm/rest/v1/applications/e63e92c4-4727-4999-97f2-50498cb40ec7/connections/445e92f5-e232-4100-b709-a875c06cf294"
        },
        {
          "rel": "connectionResources",
          "href": "https://servername.fa.us2.oraclecloud.com/epm/rest/v1/applications/e63e92c4-4727-4999-97f2-50498cb40ec7/connections/445e92f5-e232-4100-b709-a875c06cf294/resources",
          "templated": true,
          "method": "GET"
        }
      ]
    },
    {
      "id": "b0228ab4-0078-4e17-a7b3-9becf5e77c68",
      "name": "Backup Planning Server",
      "description": "",
      "connectionDetails": "{\"url\":\"http://backupserver/epbcs\",\"domain\":\"identitydomain\",\"username\":\"sampleUser\",\"password\":\"daa64d99-9c88-4109-a75b-c9756b7d0796\"}",
      "primary": false,
      "links": [
        {
          "rel": "self",
          "href": "https://servername.fa.us2.oraclecloud.com/epm/rest/v1/applications/e63e92c4-4727-4999-97f2-50498cb40ec7/connections/b0228ab4-0078-4e17-a7b3-9becf5e77c68"
        },
        {
          "rel": "connectionResources",
          "href": "https://servername.fa.us2.oraclecloud.com/epm/rest/v1/applications/e63e92c4-4727-4999-97f2-50498cb40ec7/connections/b0228ab4-0078-4e17-a7b3-9becf5e77c68/resources",
          "templated": true,
          "method": "GET"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "href": "https://servername.fa.us2.oraclecloud.com/epm/rest/v1/applications/e63e92c4-4727-4999-97f2-50498cb40ec7/connections"
    }
  ],
  "hasMore": false,
  "totalResults": 2,
  "limit": 0,
  "count": 2
}
Back to Top