Get Commerce 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:
DescriptionDescription of the Integration -
id:
integer()
Title:
IdId of the Integration item -
idField:
string()
Title:
Id FieldThis field indicates which Commerce attribute stores the external ID of the object being updated by the integration -
modifiedDate:
string()
Title:
Modified DateLatest Date in which the Integration was modified. -
name:
string()
Title:
NameName of the Integration -
orderNo:
integer()
Title:
Order NoOrder no of the Integration in the list -
type:
string()
Title:
TypeType 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"
}
]
}