Get Commerce Integration Types

get

/rest/v19/commerceProcessSetups/integrationTypes

Use this endpoint to retrieve integration types for the specified commerce process.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : AdminCollectionResponseModel_AdminIntegrationTypesModel
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : AdminIntegrationTypesModel
Type: object
Show Source
Nested Schema : displayOptions
Title: displayOptions
Display Links for each Integration Types
Match All
Display Links for each Integration Types
Show Source
Nested Schema : IntegrationDisplayOptions
Type: object
Show Source
Back to Top

Examples

The following example shows how to retrieve integration types 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/integrationTypes

Response Body Sample

{
  "items":
  [{
      "label": "Integration Cloud Service",
      "displayLabel": "Integration Cloud Service",
      "type": "MIDDLEWARE_IMPORT",
      "enabled": true
    }, {
      "name": "BML",
      "displayLabel": "[BML]",
      "type": "BML",
      "enabled": true
    }
  ]
}
Back to Top