Get Commerce Process Integration Settings

get

/rest/v19/commerceProcessSetups/integrationSettings

Use this endpoint to retrieve Commerce Process integration settings.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : AdminIntegrationSettingsModel
Type: object
Show Source
Nested Schema : Document Selections
Title: Document Selections
Document Selections list for dropdown
Match All
Document Selections list for dropdown
Show Source
Nested Schema : Instance Types
Title: Instance Types
Instance Types list for dropdown
Match All
Instance Types list for dropdown
Show Source
Nested Schema : Line Type Filters
Title: Line Type Filters
Line Type Filters list for dropdown
Match All
Line Type Filters list for dropdown
Show Source
Nested Schema : ResponseCollectionModel_AdminIntegrationSelectionItemModel
Type: object
Show Source
  • Title: Count
    Read Only: true
    The number of resource instances returned in the current range.
  • Title: HasMore
    Read Only: true
    Indicates 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
  • Title: Limit
    Read Only: true
    The actual paging size used by the server.
  • Title: OffSet
    Read Only: true
    The offset value used in the current page.
  • Title: Total Results
    Read Only: true
    Captures 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 : items
Type: array
Show Source
Nested Schema : AdminIntegrationSelectionItemModel
Type: object
Show Source
Back to Top

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"
      }
    ]
  }
}
Back to Top