Get Commerce 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 labelLanguage Translated display label for the type -
enabled:
boolean()
Title:
EnabledIndicates whether type is enabled or not -
label:
string()
Title:
LabelLabel for the type -
type:
string()
Title:
TypeVariable 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
}
]
}