Get Application Details

get

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

Get the details of activated or deployed decision or a process application specified by the applicationId.

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 : DecisionApplicationDetails
Match All
Show Source
Nested Schema : Application
Title: Application
Match All
Show Source
Nested Schema : Application-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 Invoicing application

The following example shows how to get details of a decision 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' \   -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
    }
  ],
  "applicationId": "string",
  "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

UnauthorizedMedia typeapplication/jsonExample ValueSchema{
  "errorCode": "string",
  "status": 0,
  "message": "string",
  "details": "string",
  "cause": "string",
  "opcRequestId": "string"
}
Back to Top