Get the upgrade status of apps

post

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

Returns the upgrade status of every application of a particular connector

Request

Query Parameters
Back to Top

Response

Supported Media Types

200 Response

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

Examples

cURL Example

The following example demonstrates the ability to get the upgrade status of all the apps of a connector.

curl -X GET http://pseudo.com/iam/governance/applicationmanagement/api/v1/applications/upgrade/appstatus?connectorDisplayName=Oracle%20Database%20Connector&connectorVersion=12.2.1.3.0

Response Body Example

[
    {
        "applicationName": "DBATAuth",
        "connectorDisplayName": "Oracle Database Connector",
        "connectorVersion": "12.2.1.3.0",
        "authoritative": true,
        "status": "Upgraded"
    },
    {
        "applicationName": "DBAT",
        "connectorDisplayName": "Oracle Database Connector",
        "connectorVersion": "12.2.1.3.0",
        "authoritative": false,
        "status": "Upgraded"
    }
]
Back to Top