Get Commerce Process Integration Types
get
/rest/v19/commerceProcessSetups/integrationTypes
Use this endpoint to retrieve Commerce Integration types.
Request
There are no request parameters for this operation.
Back to TopResponse
Supported Media Types
- application/json
200 Response
Success
Nested Schema : AdminIntegrationTypesModel
Type:
Show Source
object
-
displayLabel:
string()
Title:
Display label
Language Translated display label for the type -
enabled:
boolean()
Title:
Enabled
Indicates whether type is enabled or not -
label:
string()
Title:
Label
Label for the type -
type:
string()
Title:
Type
Variable name or key value of the Type
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 } ] }