Get Information about a Specific API Version for Account Reconciliation REST APIs

Returns details for a specific REST API version for Account Reconciliation.

REST Resource

GET /armARCS/rest/{api_version}

Required Roles

Service Administrator, Power User, User, Viewer

Request

Supported Media Types: application/json

Parameters

The following table summarizes the parameters.

Table 17-3 Parameters

Name Description Type Required Default
api_version Version of the API you are developing with, such as V1 Path Yes None

Response

Supported Media Types: application/json

Parameters

The following table summarizes the parameters.

Table 17-4 Parameters

Name Description
version The version, such as v1
lifecycle Possible values: active, deprecated
isLatest Whether this resource is the latest, true or false
links Detailed information about the link
href Links to API call
action The HTTP call type
rel Relationship type
data The parameters as key value pairs passed in the request

Example of Response Body

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

{  
"version": "v1",
"lifecycle": "active",
"isLatest": true,
"links": [{
"rel": "canonical",
"href": "https://<SERVICE_NAME>-<TENANT_NAME>.<SERVICE_TYPE>.<dcX>.oraclecloud.com/armARCS/rest/v1",
}, {
"rel": "predecessor-version",
"href": "https://<SERVICE_NAME>-<TENANT_NAME>.<SERVICE_TYPE>.<dcX>.oraclecloud.com/armARCS/rest/v1",
}]  
}