Get the Version of an Application

get

/decision/api/v1/applications/{appId}/versions/{versionId}

Retrieves the details of an activated decision application or a process application that contains a local decision. If the application version is activated, the boolean property activated returns true. Decision models do not support the default deployed version, and hence the DefaultVersion property always returns false.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : ApplicationVersionDetails
Title: ApplicationVersionDetails
Match All
Show Source
Nested Schema : ApplicationVersion
Title: ApplicationVersion
Match All
Show Source
Nested Schema : ApplicationVersion-allOf[1]
Type: object
Show Source
Nested Schema : CommonDetails
Type: object
Title: CommonDetails
Show Source

400 Response

Bad request
Body ()
Root Schema : ErrorMessage
Type: object
Title: ErrorMessage
Defines ErrorMessage
Show Source

401 Response

Unauthorized
Body ()
Root Schema : ErrorMessage
Type: object
Title: ErrorMessage
Defines ErrorMessage
Show Source

404 Response

Resource not found

500 Response

Internal error
Body ()
Root Schema : ErrorMessage
Type: object
Title: ErrorMessage
Defines ErrorMessage
Show Source
Back to Top

Examples

Example: Get details of X version of the Invoicing application

The following example shows how to get details of a specific version of a application by submitting a GET request on the REST resource using cURL. For more information about cURL, see cURL Access. For more information about endpoint URL structure, see Send Requests.

curl -X 'GET' \
      'https://oracle.com/decision/api/v1/applications/Invoicing/versions/X' \   -H 'accept:
      application/json'

Example Format of 200 Operation Successful Response

{
  "links": [
    {
      "href": "string",
      "hreflang": "string",
      "length": 0,
      "rel": "string",
      "title": "string",
      "type": "string",
      "mediaType": "string",
      "message": "string",
      "code": 600
    }
  ],
  "version": "string",
  "activated": false,
  "defaultVersion": false,
  "description": "string",
  "createdTime": "2022-08-29T09:12:33.001Z",
  "lastChangedTime": "2022-08-29T09:12:33.001Z",
  "createdBy": "string",
  "lastChangedBy": "string"
}

Example Format of Bad Request Response

{
  "errorCode": "string",
  "status": 0,
  "message": "string",
  "details": "string",
  "cause": "string",
  "opcRequestId": "string"
}
Back to Top