Get Commerce Integration Settings
get
/rest/v19/commerceProcessSetups/integrationSettings
Use this endpoint to retrieve settings for the specified commerce integration.
Request
There are no request parameters for this operation.
Back to TopResponse
Supported Media Types
- application/json
200 Response
Success
Root Schema : AdminIntegrationSettingsModel
Type:
Show Source
object-
defaultBatchSize:
integer()
Title:
Default Batch SizeDefault Batch Size used for Integration -
docSelections:
Document Selections
Title:
Document SelectionsDocument Selections list for dropdown -
fusionActive:
object fusionActive
-
icsProperties:
Integration Cloud Service Properties
Title:
Integration Cloud Service PropertiesIntegration Cloud Service(ICS) configuration properties in Integration Center -
instanceTypes:
Instance Types
Title:
Instance TypesInstance Types list for dropdown -
isFusionActive:
boolean()
Title:
Is Fusion ActiveReturns true if CRM Integration vendor is Fusion -
isSalesForceActive:
boolean()
Title:
Is SalesForce ActiveReturns true if CRM Integration vendor is SalesForce -
lineTypeFilters:
Line Type Filters
Title:
Line Type FiltersLine Type Filters list for dropdown -
propertyTypes:
Integration Property types
Title:
Integration Property typesIntegration Property types -
salesForceActive:
object salesForceActive
Nested Schema : Document Selections
Title:
Document SelectionsDocument Selections list for dropdown
Match All
Document Selections list for dropdown
Show Source
Nested Schema : fusionActive
Type:
objectNested Schema : Integration Cloud Service Properties
Title:
Integration Cloud Service PropertiesIntegration Cloud Service(ICS) configuration properties in Integration Center
Match All
Integration Cloud Service(ICS) configuration properties in Integration Center
Show Source
Nested Schema : Instance Types
Title:
Instance TypesInstance Types list for dropdown
Match All
Instance Types list for dropdown
Show Source
Nested Schema : Line Type Filters
Title:
Line Type FiltersLine Type Filters list for dropdown
Match All
Line Type Filters list for dropdown
Show Source
Nested Schema : Integration Property types
Title:
Integration Property typesIntegration Property types
Match All
Integration Property types
Show Source
Nested Schema : salesForceActive
Type:
objectNested Schema : ResponseCollectionModel_AdminIntegrationSelectionItemModel
Type:
Show Source
object-
count:
integer()
Title:
CountRead Only:trueThe number of resource instances returned in the current range. -
hasMore:
boolean()
Title:
HasMoreRead Only:trueIndicates whether more resources are available on the server than the subset returned in the response. If the value is true, then there are more resources to retrieve from the server. The default value is false. -
items:
array items
-
limit:
integer()
Title:
LimitRead Only:trueThe actual paging size used by the server. -
links:
array Links
Title:
LinksRead Only:trueThe link relations associated with the resource instance. -
offset:
integer()
Title:
OffSetRead Only:trueThe offset value used in the current page. -
totalResults:
integer()
Title:
Total ResultsRead Only:trueCaptures the total count of the resource instances, which not only includes the instances in the current range, but all instances on the server that satisfy the request.
Nested Schema : Links
Type:
arrayTitle:
LinksRead Only:
trueThe link relations associated with the resource instance.
Show Source
Nested Schema : IntegrationCloudServiceModel
Type:
Show Source
object-
generation:
string()
Title:
GenerationGeneration type of the configured ICS -
isConfigured:
boolean()
Title:
Is ConfiguredIs ICS configured in Integration Center -
isEnabled:
boolean()
Title:
Is EnabledIs ICS enabled in integration centre
Examples
The following example shows how to retrieve Commerce Process integration settings 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/integrationSettings
Response Body Sample
{
"defaultBatchSize": 500,
"instanceTypes": {
"items": [{
"value": "GENERIC",
"displayValue": "Always Run"
}, {
"value": "DYNAMICS",
"displayValue": "Requires Partner Session"
}
]
},
"lineTypeFilters": {
"items": [{
"value": "ROOT_LINES",
"displayValue": "Root Lines"
}, {
"value": "PART_LINES",
"displayValue": "Part Lines"
}, {
"value": "ALL_LINES",
"displayValue": "All Lines"
}, {
"value": "CUSTOM",
"displayValue": "Custom"
}
]
},
"docSelections": {
"items": [{
"value": "MAIN_DOCUMENT",
"displayValue": "Main Document"
}, {
"value": "SUB_DOCUMENT",
"displayValue": "Sub Document"
}
]
}
}