Get Commerce Process Integrations

get

/rest/v19/commerceProcessSetups/{processVarName}/integrations

Use this endpoint to retrieve available integrations for the specified Commerce Process.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

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

Examples

The following example shows how to retrieve available integrations 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/integrations

Response Body Sample

{
  "items": [{
      "orderNo": 5,
      "name": "Sync Quote Lines",
      "type": "REST - Export Lines",
      "idField": "transaction.oRCL_SFA_TransactionID_t",
      "description": "Creates, updates or deletes the SFA quote line",
      "modifiedDate": "09/23/2024 02:32"
    }
  ]
}

Back to Top