Get the upgrade status of every Connector

post

/iam/governance/applicationmanagement/api/v1/applications/upgrade/status

Returns the upgrade status of every Connector

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

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

Examples

cURL Example

The following example demonstrates the ability to get the upgrade status of all the connectors.

curl -X GET http://pseudo.com/iam/governance/applicationmanagement/api/v1/applications/upgrade/status

Response Body Example

[
    {
        "connectorDisplayName": "Oracle Database Connector",
        "oldConnectorVersion": "11.1.1.6.0",
        "newConnectorVersion": "12.2.1.3.0",
        "authoritative": true,
        "status": "STARTED"
    },
    {
        "connectorDisplayName": "Oracle Database Connector",
        "oldConnectorVersion": "11.1.1.6.0",
        "newConnectorVersion": "12.2.1.3.0",
        "authoritative": false,
        "status": "STARTED"
    }
]
Back to Top