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
- application/json
200 Response
Success
Nested Schema : CmInitialImportsModel
Type:
Show Source
object
-
integrationId:
integer()
Title:
ID
ID of Integration -
name:
string()
Title:
Name
Name -
selected:
boolean()
Title:
Selected
Selected -
type:
string()
Title:
Type
Type
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 } ] }