Get Commerce Process Integration Initial Imports

get

/rest/v19/commerceProcessSetups/{processVarName}/initialImports

Use this endpoint to retrieve enabled initial integration imports for the specified Commerce Process.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : CmInitialImportsResponseModel
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : CmInitialImportsModel
Type: object
Show Source
Back to Top

Examples

The following example shows how to retrieve enabled initial integration imports for the specified Commerce Process by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X GET -H "Authorization: Bearer <token>" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/commerceProcessSetups/oraclecpqo/initialImports

Response Body Sample

{
  "items": [{
      "integrationId": 3023136163,
      "Name": "Get so status form FO",
      "type": "BML",
      "selected": false
    }, {
      "integrationId": 3023290263,
      "Name": "Rest import opportunity",
      "type": "REST - Import",
      "selected": true
    }, {
      "integrationId": 3022962251,
      "Name": "Cancel So from CPQ",
      "variableName": "BML",
      "selected": false
    }
  ]
}
Back to Top