Export an Application

get

/process/api/v1/design/dmnApplications/{applicationName}/versions/{version}/export

Export an application in the form of a dmnx file.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Application(version) exported
Body ()
Root Schema : schema
Type: binary

401 Response

Unauthorized

404 Response

Application not found.

500 Response

An internal error occurred.
Back to Top

Examples

The following example shows how to export 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.

Example: cURL command to export application Invoicing version 1

curl -X 'GET' \
  'https://oracle.com/decision/api/v1/design/dmnApplications/Invoicing/versions/1/export' \
  -H 'accept: application/octet-stream'
Back to Top