Get Commerce Process Integrations
get
/rest/v19/commerceProcessSetups/{processVarName}/integrations
Use this endpoint to retrieve available integrations for the specified Commerce Process.
Request
Path Parameters
Back to Top
Response
Supported Media Types
- application/json
200 Response
Success
Nested Schema : IntegrationsListModel
Type:
Show Source
object
-
description:
string()
Title:
Description
Description of the Integration -
id:
integer()
Title:
Id
Id of the Integration item -
idField:
string()
Title:
Id Field
This field indicates which Commerce attribute stores the external ID of the object being updated by the integration -
modifiedDate:
string()
Title:
Modified Date
Latest Date in which the Integration was modified. -
name:
string()
Title:
Name
Name of the Integration -
orderNo:
integer()
Title:
Order No
Order no of the Integration in the list -
type:
string()
Title:
Type
Type of the Integration
Examples
The following example shows how to retrieve available integrations 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/integrations
Response Body Sample
{ "items": [{ "orderNo": 5, "name": "Sync Quote Lines", "type": "REST - Export Lines", "idField": "transaction.oRCL_SFA_TransactionID_t", "description": "Creates, updates or deletes the SFA quote line", "modifiedDate": "09/23/2024 02:32" } ] }