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 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 -
displayOptions:
displayOptions
Title:
displayOptionsDisplay Links for each Integration Types -
enabled:
boolean()
Title:
EnabledIndicates whether type is enabled or not -
enumType:
string()
Title:
EnumTypeEnum label used for the Integration Type -
isHidden:
boolean()
Title:
Is HiddenIndicates whether type is hidden or not -
label:
string()
Title:
LabelLabel for the type -
type:
string()
Title:
TypeKey value of the Type
Nested Schema : displayOptions
Title:
displayOptionsDisplay Links for each Integration Types
Match All
Display Links for each Integration Types
Show Source
Nested Schema : IntegrationDisplayOptions
Type:
Show Source
object-
inputXmlForSoapGenerator:
boolean()
Title:
Input XML for SOAP GeneratorShow Input XML for SOAP Generator link -
previewExportResponse:
boolean()
Title:
Preview Export ResponseShow Preview Export Response link -
previewMiddlewareResponse:
boolean()
Title:
Preview Middleware ResponseShow Preview Middleware Response link -
previewParsedResponse:
boolean()
Title:
Preview Parsed ResponseShow Preview Parsed Response link -
previewParserResult:
boolean()
Title:
Preview Parser ResultShow Preview Parser Result link -
previewPartnerResponse:
boolean()
Title:
Preview Partner ResponseShow Preview Partner Response link -
previewQueryResult:
boolean()
Title:
Preview Query ResultShow Preview Query Result link -
previewRequest:
boolean()
Title:
Preview RequestShow Preview Request link -
previewSoapXml:
boolean()
Title:
Preview SOAP XMLShow Preview SOAP XML link -
testIntegration:
boolean()
Title:
Test IntegrationShow Test Integration link
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
}
]
}