Create or Import an Application

post

/process/api/v1/design/dmnApplications

Create an empty application or import an application from an dmnx file.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - multipart/form-data ()
Root Schema : schema
Type: object
Show Source
Nested Schema : CreateApplicationRequest
Type: object
Request body for application creation/import
Show Source
Back to Top

Response

Supported Media Types

201 Response

Application created
Body ()
Root Schema : Application
Type: object
Show Source
Nested Schema : Activation
Type: object
Show Source
Nested Schema : assets
Type: array
Show Source
Nested Schema : Audit
Type: object
Show Source
Nested Schema : snapshots
Type: array
Show Source
Nested Schema : Assets
Type: object
Show Source
Nested Schema : Snapshots
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : Snapshot
Type: object
Show Source

401 Response

Unauthorized

405 Response

Application expx file cannot be imported.

409 Response

Application already exists. Delete it manually or by enabling 'forceFlag'.

500 Response

An internal error occurred.
Back to Top

Examples

The following example shows how to create or import an empty decision application by submitting a POST 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: JSON Request body for application creation/import

{
  "name": "string",
  "version": "string",
  "title": "string",
  "description": "",
  "forceFlag": false
}

Example: cURL command to create or import an empty application

curl -X 'POST' \
  'https://oracle.com/decision/api/v1/design/dmnApplications' \
  -H 'accept: application/json' \
  -H 'Content-Type: multipart/form-data' \
  -F 'json={"name":"string","version":"string","title":"string","description":"","forceFlag":false}' \
  -F 'file='

Example: Response body of 201 successful response in JSON format

{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "name": "string",
  "version": "string",
  "title": "string",
  "description": "string",
  "audit": {
    "createdBy": "string",
    "createdOn": "2024-06-13T15:57:45.582Z"
  },
  "assets": [
    {
      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "name": "string",
      "type": "string"
    }
  ],
  "snapshots": [
    {
      "items": [
        {
          "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
          "name": "string",
          "description": "string",
          "audit": {
            "createdBy": "string",
            "createdOn": "2024-06-13T15:57:45.582Z"
          },
          "status": "IN_PROGRESS",
          "validation": "IN_PROGRESS"
        }
      ],
      "count": 0
    }
  ],
  "activation": {
    "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "snapshotId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "snapshotName": "string",
    "isDefault": true,
    "audit": {
      "createdBy": "string",
      "createdOn": "2024-06-13T15:57:45.582Z"
    },
    "status": "ACTIVATION_STARTED"
  }
}
Back to Top