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 TopResponse
Supported Media Types
- application/json
200 Response
Successful operation
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"
}
]