Commerce Process REST APIs
Overview
Commerce Process REST APIs provide access to process level data. If you are using a custom process your endpoints may vary, refer to Custom Process Endpoint Parameters for more information.
Administration
Custom Process Endpoint Parameters
Commerce REST APIs use the following resource paths for the standard process:
-
Main document
/commerceDocumentsOraclecpqoTransaction -
Sub document
/commerceDocumentsOraclecpqoTransaction/{id}/TransactionLine
The following variable may differ for custom processes:
-
{Stage}The stage variable identifies where a transaction is within the Commerce process flow. (Documents, Quotes, Agreements, or Orders) e.g. Documents -
{ProcessVarName}The variable name of the commerce process, note the first letter must be capitalized. e.g. Oraclecpqo -
{MainDocVarName}The variable name of the main document, note the first letter must be capitalized. e.g. Transaction -
{id}The commerce transaction Id. This is the unique identifier for a transaction within an Oracle CPQ site. e.g. 36365444 -
{subDocVarName}The sub-document number e.g. transactionLine
Commerce REST APIs use the following resource paths for the standard process:
-
Main document
/commerceDocumentsOraclecpqoTransaction -
Sub document
/commerceDocumentsOraclecpqoTransaction/{id}/TransactionLine
The following variable may differ for custom processes:
-
{Stage}The stage variable identifies where a transaction is within the Commerce process flow. (Documents, Quotes, Agreements, or Orders) e.g. Documents -
{ProcessVarName}The variable name of the commerce process, note the first letter must be capitalized. e.g. Oraclecpqo -
{MainDocVarName}The variable name of the main document, note the first letter must be capitalized. e.g. Transaction -
{id}The commerce transaction Id. This is the unique identifier for a transaction within an Oracle CPQ site. e.g. 36365444 -
{subDocVarName}The sub-document number e.g. transactionLine
Archive Transactions ![]() |
||
|---|---|---|
|
Description |
Use this endpoint to archive the specified transactions. Note: This action is only available for Application Administrators. |
|
|
URI Endpoint |
/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_archive_transactions |
|
| Endpoint Parameters |
Note: If you are using a custom commerce process your endpoints may vary, refer to Custom Process Endpoint Parameters for more information. |
|
|
Request Body Parameters
|
selectionCriteria |
This criteria query definition is used to specify items for collection-based process actions.
|
|
HTTP Method |
POST |
|
|
Success Response |
204 No Content |
|
https://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_archive_transactions
{ "selectionCriteria": { "q": "{'bsid':{$eq:'3022127625'}}", "orderby": ["field1:ASC", "field2:DESC"] } }
Copy Sequence ![]() |
||
|---|---|---|
|
Description |
Use this endpoint to retrieve copy sequences for the Commerce process. |
|
|
URI Endpoint |
/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_copy_sequence |
|
| Endpoint Parameters |
Note: If you are using a custom commerce process your endpoints may vary, refer to Custom Process Endpoint Parameters for more information. |
|
|
HTTP Method |
POST |
|
|
Request Parameters |
None | |
| Response Parameters |
sequences |
An array of sequence definitions |
https://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_copy_sequence
{ "sequences": [{ "name": "sequece 1", "id": 38736650, "order": 1, "description": "", "modifiedDate": "Mon May 06 21:55:11 UTC 2024" } ]
Delete Archived Transactions ![]() |
||
|---|---|---|
|
Description |
Use this endpoint to delete the specified archived transactions. Note: This action is only available for Application Administrators. |
|
|
URI Endpoint |
/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_delete_archived_transactions |
|
| Endpoint Parameters |
Note: If you are using a custom commerce process your endpoints may vary, refer to Custom Process Endpoint Parameters for more information. |
|
|
Request Body Parameters |
selectionCriteria |
An array of archived transaction |
|
HTTP Method |
POST |
|
|
Success Response |
204 No Content |
|
https://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_delete_archived_transactions
{ "selectionCriteria": { "ids": [19403637, 19403536, 19401289, 19397409, 19397331, 19397252, 19397175, 19396957, 19396878, 19396429, 19395774, 19395679, 19395605, 19385048, 19384977] } }
|
Description |
Use this endpoint to export selected data column values for all selected transactions in a zipped excel file. |
|
|---|---|---|
|
URI Endpoint |
/rest/v19/commerceDocumentsOraclecpqoTransaction/{id}/actions/export_transactions |
|
| Endpoint Parameters |
Note: If you are using a custom commerce process your endpoints may vary, refer to Custom Process Endpoint Parameters for more information. |
|
|
id |
The commerce transaction Id. This is the unique identifier for a transaction within an Oracle CPQ site. |
|
|
HTTP Method |
POST |
|
|
Request Body Parameters |
selectionCriteria |
This criteria query definition is used to specify items for collection-based process actions.
|
| Response Body Parameters |
fileUrl |
The URL of the file. |
|
warnings |
Array of messages that have been generated for a specific object. |
|
https://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/export_transactions
{ "selectionCriteria": { "search": "_my_approval_search", "orderby": ["_id:desc", "searchViewName:asc"], "fields": ["_id", "_lock_status", "bs_id", "processManagerFloat"] } }
{ "warnings": {}, "fileUrl": "https://sitename.oracle.com/rest/v19/commerceExports/filename.zip" }
Forward Transactions ![]() |
||
|---|---|---|
|
Description |
Use this endpoint to forward selected transactions to the specified users and/or groups. |
|
|
URI Endpoint |
/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_forward |
|
| Endpoint Parameters |
Note: If you are using a custom commerce process your endpoints may vary, refer to Custom Process Endpoint Parameters for more information. |
|
|
HTTP Method |
POST |
|
|
Request Body Parameters
|
company |
The company name |
|
ids |
The list of transactions that are forwarded to user / groups |
|
|
salesGroups |
List of sales groups to forward the transaction to |
|
|
salesUsers |
List of sales use logins to forward the transaction to |
|
|
Success Response |
204 No Content |
|
https://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_forward
{ "ids": [18007731, 18007790, 18005157], "company": "company123, "salesGroups": [group1, group2, group3], "salesUsers": [] }
Get Archived Transactions ![]() |
||
|---|---|---|
|
Description |
Use this endpoint to retrieve a list of archived transactions. Note: This action is only available for CPQ administrators with Application Administrator permission. |
|
|
URI Endpoint |
/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_get_archived_transactions |
|
| Endpoint Parameters |
Note: If you are using a custom commerce process your endpoints may vary, refer to Custom Process Endpoint Parameters for more information. |
|
|
Request Body Parameters |
criteria |
The criteria query definition supports the following parameters to retrieve specific content and limit the size of the response.
|
|
HTTP Method |
POST |
|
|
Response Body Parameters |
documents |
The transaction collection |
https://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_get_archived_transactions
{ "criteria": { "orderby": ["_id:DESC"], "totalResults": true, "limit": 2, "offset": 0 } }
{ "documents": { "offset": 0, "limit": 2, "count": 2, "hasMore": true, "items": [{ { "documents": { "totalResults": 3, "offset": 0, "limit": 2, "count": 2, "hasMore": true, "items": [{ "totalOneTimeListAmount_t": { "value": 0.0, "currency": "USD" }, "_locked_by_user_login": null, "lastUpdatedDate_t": "2024-05-22T21:15:00Z", "_document_var_name": "transaction", "lastPricedDate_t": "2024-05-22T21:11:00Z", "_customer_id": "300100122967029", "_customer_t_company_name": "Vision Development US)", "totalAnnualValue_t": { "value": 0.0, "currency": "USD" }, "totalContractValue_t": { "value": 0.0, "currency": "USD" }, "_locked_time": null, "createdDate_t": "2024-05-22", "_date_modified": "2024-06-09T15:11:09.000Z", "_last_document_number": 6, "_date_added": "2024-06-09T15:11:09.000Z", "transactionName_t": "05/22 Vision Development US)", "_id": 38780366, "_pp_id": null, "owner_t": "Albert M", "_process_var_name": "oraclecpqo", "_locked_by_user_first_name": null, "_step_var_name": "pending_process", "totalOneTimeNetAmount_t": { "value": 0.0, "currency": "USD" }, "_lock_status": null, "totalMonthlyListAmount_t": { "value": 0.0, "currency": "USD" }, "_locked_by_user_last_name": null, "version_t": 1, "transactionID_t": "CPQ-90124B", "_buyer_company_name": "cpq-techwriter1", "totalMonthlyDiscount_t": { "value": 0.0, "currency": "USD" }, "_date_tx_modified": "2024-05-22T21:15:57.000Z", "_supplier_company_name": "cpq-techwriter1", "_locked_by_user": null, "version_number_versionTransaction_t": "1", "_currency_pref": { "id": 5190368, "currencyCode": "USD", "links": [{ "rel": "domain", "href": "https://sitename.oracle.com/rest/v19/currencies" }, { "rel": "canonical", "href": "https://sitename.oracle.com/rest/v19/currencies/USD" } ] }, "_pp_name": null, "priceWithinPolicy_t": true, "totalOneTimeDiscount_t": { "value": 0.0, "currency": "USD" }, "status_t": { "value": "CREATED", "displayValue": "Created" }, "totalMonthlyNetAmount_t": { "value": 0.0, "currency": "USD" } }, { "totalOneTimeListAmount_t": { "value": 0.0, "currency": "USD" }, "_locked_by_user_login": null, "lastUpdatedDate_t": "2024-05-22T21:05:00Z", "_document_var_name": "transaction", "lastPricedDate_t": "2024-05-06T21:32:00Z", "_customer_id": "300100122967029", "_customer_t_company_name": "Vision Development US)", "totalAnnualValue_t": { "value": 0.0, "currency": "USD" }, "totalContractValue_t": { "value": 0.0, "currency": "USD" }, "_locked_time": null, "createdDate_t": "2024-05-06", "_date_modified": "2024-06-09T15:11:19.000Z", "_last_document_number": 3, "_date_added": "2024-06-09T15:11:19.000Z", "transactionName_t": "05/06 Vision Development US)", "_id": 38736262, "_pp_id": null, "owner_t": "Albert M", "_process_var_name": "oraclecpqo", "_locked_by_user_first_name": null, "_step_var_name": "pending_process", "totalOneTimeNetAmount_t": { "value": 0.0, "currency": "USD" }, "_lock_status": null, "totalMonthlyListAmount_t": { "value": 0.0, "currency": "USD" }, "_locked_by_user_last_name": null, "version_t": 1, "transactionID_t": "CPQ-90024B", "_buyer_company_name": "cpq-techwriter1", "totalMonthlyDiscount_t": { "value": 0.0, "currency": "USD" }, "_date_tx_modified": "2024-05-22T21:06:23.000Z", "_supplier_company_name": "cpq-techwriter1", "_locked_by_user": null, "version_number_versionTransaction_t": "1", "_currency_pref": { "id": 5190368, "currencyCode": "USD", "links": [{ "rel": "domain", "href": "https://sitename.oracle.com/rest/v19/currencies" }, { "rel": "canonical", "href": "https://sitename.oracle.com/rest/v19/currencies/USD" } ] }, "_pp_name": null, "priceWithinPolicy_t": true, "totalOneTimeDiscount_t": { "value": 0.0, "currency": "USD" }, "status_t": { "value": "CREATED", "displayValue": "Created" }, "totalMonthlyNetAmount_t": { "value": 0.0, "currency": "USD" } } ] } } "totalOneTimeListAmount_t": { "value": 5899.0, "currency": "USD" }, "_locked_by_user_login": null, "lastUpdatedDate_t": "2024-02-02T17:47:00Z", "_document_var_name": "transaction", "lastPricedDate_t": "2024-02-02T13:28:00Z", "_customer_id": "300100122967029", "_customer_t_company_name": "Vision Development US)", "totalAnnualValue_t": { "value": 612.0, "currency": "USD" }, "totalContractValue_t": { "value": 6511.0, "currency": "USD" }, "_locked_time": null, "createdDate_t": "2024-02-02", "_date_modified": "2024-06-09T15:11:26.000Z", "_last_document_number": 6, "_date_added": "2024-06-09T15:11:26.000Z", "transactionName_t": "02/02 Vision Development US)", "_id": 38642415, "_pp_id": null, "owner_t": "Albert M", "_process_var_name": "oraclecpqo", "_locked_by_user_first_name": null, "_step_var_name": "pending_process", "totalOneTimeNetAmount_t": { "value": 5899.0, "currency": "USD" }, "_lock_status": null, "totalMonthlyListAmount_t": { "value": 306.0, "currency": "USD" }, "_locked_by_user_last_name": null, "version_t": 1, "transactionID_t": "CPQ-89924B", "_buyer_company_name": "cpq-techwriter1", "totalMonthlyDiscount_t": { "value": 0.0, "currency": "USD" }, "_date_tx_modified": "2024-05-17T20:49:31.000Z", "_supplier_company_name": "cpq-techwriter1", "_locked_by_user": null, "version_number_versionTransaction_t": "1", "_currency_pref": { "id": 5190368, "currencyCode": "USD", "links": [{ "rel": "domain", "href": "https://sitename.oracle.com/rest/v19/currencies" }, { "rel": "canonical", "href": "https://sitename.oracle.com/rest/v19/currencies/USD" } ] }, "_pp_name": null, "priceWithinPolicy_t": true, "totalOneTimeDiscount_t": { "value": 0.0, "currency": "USD" }, "status_t": { "value": "CREATED", "displayValue": "Created" }, "totalMonthlyNetAmount_t": { "value": 306.0, "currency": "USD" } }, { "totalOneTimeListAmount_t": { "value": 0.0, "currency": "USD" }, "_locked_by_user_login": null, "lastUpdatedDate_t": "2024-05-22T21:05:00Z", "_document_var_name": "transaction", "lastPricedDate_t": "2024-05-06T21:32:00Z", "_customer_id": "300100122967029", "_customer_t_company_name": "Vision Development US)", "totalAnnualValue_t": { "value": 0.0, "currency": "USD" }, "totalContractValue_t": { "value": 0.0, "currency": "USD" }, "_locked_time": null, "createdDate_t": "2024-05-06", "_date_modified": "2024-06-09T15:11:19.000Z", "_last_document_number": 3, "_date_added": "2024-06-09T15:11:19.000Z", "transactionName_t": "05/06 Vision Development US)", "_id": 38736262, "_pp_id": null, "owner_t": "Albert M", "_process_var_name": "oraclecpqo", "_locked_by_user_first_name": null, "_step_var_name": "pending_process", "totalOneTimeNetAmount_t": { "value": 0.0, "currency": "USD" }, "_lock_status": null, "totalMonthlyListAmount_t": { "value": 0.0, "currency": "USD" }, "_locked_by_user_last_name": null, "version_t": 1, "transactionID_t": "CPQ-90024B", "_buyer_company_name": "cpq-techwriter1", "totalMonthlyDiscount_t": { "value": 0.0, "currency": "USD" }, "_date_tx_modified": "2024-05-22T21:06:23.000Z", "_supplier_company_name": "cpq-techwriter1", "_locked_by_user": null, "version_number_versionTransaction_t": "1", "_currency_pref": { "id": 5190368, "currencyCode": "USD", "links": [{ "rel": "domain", "href": "https://sitename.oracle.com/rest/v19/currencies" }, { "rel": "canonical", "href": "https://sitename.oracle.com/rest/v19/currencies/USD" } ] }, "_pp_name": null, "priceWithinPolicy_t": true, "totalOneTimeDiscount_t": { "value": 0.0, "currency": "USD" }, "status_t": { "value": "CREATED", "displayValue": "Created" }, "totalMonthlyNetAmount_t": { "value": 0.0, "currency": "USD" } } ] } }
Group (Aggregate) Transactions
Group (Aggregate) Transactions ![]() |
||
|---|---|---|
|
Description |
Use this endpoint to return a list of transactions grouped by the column specified in the request body. |
|
|
URI Endpoint |
/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_aggregate |
|
| Endpoint Parameters |
Note: If you are using a custom commerce process your endpoints may vary, refer to Custom Process Endpoint Parameters for more information. |
|
|
HTTP Method |
POST |
|
|
Request Body Parameters |
aggregate |
Captures information to aggregate transactions. |
|
criteria |
The criteria query definition supports the following parameters to retrieve specific content and limit the size of the response.
|
|
|
Response Body Parameters |
JSON data containing the grouped transactions | |
http://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqoTransaction/actions_aggregate
{ "aggregate": { "attr": "processManagerSSM", "limit": 20 }, "criteria": { "fields": ["_customer_id", "_id", "_date_modified"], "limit": 100, "totalResults": true, "q": "{'_customer_id':{$ne:'account112'}}", "orderby": ["_date_modified"] } }
{ "groups": [{ "groupName": "", "totalCount": 808, "nextlink": { "rel": "next", "href": "http://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqoTransaction?offset=100&limit=100&q={\"_customer_id\":{\"$ne\":\"account112\"},\"processManagerSSM\":{\"$exists\":false}}&fields=_customer_id,_id&totalResults=true" } }, { "groupName": "value1", "totalCount": 3, "nextlink": { "rel": "self", "href": "http://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqoTransaction?offset=0&limit=100&q={\"_customer_id\":{\"$ne\":\"account112\"},\"processManagerSSM\":\"value1\"}&fields=_customer_id,_id&totalResults=true" } }, { "groupName": "value2", "totalCount": 2, "nextlink": { "rel": "self", "href": "http://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqoTransaction?offset=0&limit=100&q={\"_customer_id\":{\"$ne\":\"account112\"},\"processManagerSSM\":\"value2\"}&fields=_customer_id,_id&totalResults=true" } } ], "primaryResults": { "totalResults": 808, "offset": 0, "limit": 100, "count": 100, "hasMore": true, "links": [{ "rel": "self", "href": "http://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqoTransaction" } ], "items": [{ "_customer_id": "SpecialAccount6", "_id": 15555314, "links": [{ ... ], }, { "_customer_id": "SpecialAccount6", "_id": 15556582, "links": [{ ... ] }, ... ] } }
My Approvals Search ![]() |
||
|---|---|---|
|
Description |
Use this endpoint to retrieve a user's pending approvals waiting in a queue when there are quotes they need to approve. |
|
|
URI Endpoint |
/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_my_approval_search |
|
| Endpoint Parameters |
Note: If you are using a custom commerce process your endpoints may vary, refer to Custom Process Endpoint Parameters for more information. |
|
|
id |
The commerce transaction Id. This is the unique identifier for a transaction within an Oracle CPQ site. |
|
|
Request Body Parameters |
criteria |
The criteria query definition supports the following parameters to retrieve specific content and limit the size of the response.
|
|
HTTP Method |
POST |
|
|
Response Body Parameters |
A list containing the requested fields and items matching the search criteria |
|
https://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_my_approval_search
{ "criteria": { "fields": [ "projectName", "_id", "_lock_status", "_currency_pref", "mainMathInput_Float1" ], "orderby": [ "_currency_pref:DESC", "projectName:ASC" ], "limit": 10, "offset": 20 } }
{ "hasMore": false, "links": [{ "rel": "self", "href": "http://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqo" } ], "items": [{ "_lock_status": null, "mainMathInput_Float1": null, "_currency_pref": { "id": 14619668, "currencyCode": "USD", "links": [{ "rel": "domain", "href": "http://sitename.oracle.com/rest/v19/currencies" }, { "rel": "canonical", "href": "http://sitename.oracle.com/rest/v19/currencies/USD" } ] }, "_id": 3023106049, "projectName": "Super User's project 11/07/2023 08:13:39" }, { "_lock_status": null, "mainMathInput_Float1": null, "_currency_pref": { "id": 14619668, "currencyCode": "USD", "links": [{ "rel": "domain", "href": "http://sitename.oracle.com/rest/v19/currencies" }, { "rel": "canonical", "href": "http://sitename.oracle.com/rest/v19/currencies/USD" } ] }, "_id": 3023123297, "projectName": "Super User's project 11/08/2023 22:06:16" }, { "_lock_status": null, "mainMathInput_Float1": null, "_currency_pref": { "id": 14619668, "currencyCode": "USD", "links": [{ "rel": "domain", "href": "http://sitename.oracle.com/rest/v19/currencies" }, { "rel": "canonical", "href": "http://sitename.oracle.com/rest/v19/currencies/USD" } ] }, "_id": 3023123306, "projectName": "Super User's project 11/08/2023 22:06:16" }, { "_lock_status": null, "mainMathInput_Float1": null, "_currency_pref": { "id": 14619668, "currencyCode": "USD", "links": [{ "rel": "domain", "href": "http://sitename.oracle.com/rest/v19/currencies" }, { "rel": "canonical", "href": "http://sitename.oracle.com/rest/v19/currencies/USD" } ] }, "_id": 3023120057, "projectName": "Super User's project 11/08/2023 07:43:34" }, { "_lock_status": null, "mainMathInput_Float1": null, "_currency_pref": { "id": 14619668, "currencyCode": "USD", "links": [{ "rel": "domain", "href": "http://sitename.oracle.com/rest/v19/currencies" }, { "rel": "canonical", "href": "http://sitename.oracle.com/rest/v19/currencies/USD" } ] }, "_id": 3023120066, "projectName": "Super User's project 11/08/2023 07:43:54" }, { "_lock_status": null, "mainMathInput_Float1": null, "_currency_pref": { "id": 14619668, "currencyCode": "USD", "links": [{ "rel": "domain", "href": "http://sitename.oracle.com/rest/v19/currencies" }, { "rel": "canonical", "href": "http://sitename.oracle.com/rest/v19/currencies/USD" } ] }, "_id": 3023123276, "projectName": "Super User's project 11/08/2023 21:53:31" }, { "_lock_status": null, "mainMathInput_Float1": null, "_currency_pref": { "id": 14619668, "currencyCode": "USD", "links": [{ "rel": "domain", "href": "http://sitename.oracle.com/rest/v19/currencies" }, { "rel": "canonical", "href": "http://sitename.oracle.com/rest/v19/currencies/USD" } ] }, "_id": 3023123288, "projectName": "Super User's project 11/08/2023 22:05:37" }, { "_lock_status": null, "mainMathInput_Float1": null, "_currency_pref": { "id": 14619668, "currencyCode": "USD", "links": [{ "rel": "domain", "href": "http://sitename.oracle.com/rest/v19/currencies" }, { "rel": "canonical", "href": "http://sitename.oracle.com/rest/v19/currencies/USD" } ] }, "_id": 3023123315, "projectName": "Super User's project 11/08/2023 22:06:16" }, { "_lock_status": null, "mainMathInput_Float1": 4.35, "_currency_pref": { "id": 14619668, "currencyCode": "USD", "links": [{ "rel": "domain", "href": "http://sitename.oracle.com/rest/v19/currencies" }, { "rel": "canonical", "href": "http://sitename.oracle.com/rest/v19/currencies/USD" } ] }, "_id": 15555481, "projectName": "Test" } ] }
Restore Archived Transactions ![]() |
||
|---|---|---|
|
Description |
Use this endpoint to restore the specified archived transactions. Note: This action is only available for Application Administrators. |
|
|
URI Endpoint |
/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_restore_archived_transactions |
|
| Endpoint Parameters |
Note: If you are using a custom commerce process your endpoints may vary, refer to Custom Process Endpoint Parameters for more information. |
|
|
Request Body Parameters |
selectionCriteria |
An array of archived transaction id items to be restored. |
|
HTTP Method |
POST |
|
|
Success Response |
204 No Content |
|
https://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_restore_archived_transactions
{ "selectionCriteria":{ "ids":[18007731,18007790,18005157] } }
Unlock Transactions ![]() |
||
|---|---|---|
|
Description |
Use this endpoint to unlock the specified Transactions in a Commerce process that are locked for editing. This endpoint is not available / supported for Partner organization users. |
|
|
URI Endpoint |
/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_process_unlock |
|
| Endpoint Parameters |
Note: If you are using a custom commerce process your endpoints may vary, refer to Custom Process Endpoint Parameters for more information. |
|
|
Request Body Parameters |
selections |
An array of transaction Ids to archive. |
|
HTTP Method |
POST |
|
| Response Body Parameters |
layoutVariableName |
The redwood quote layout variable name. |
|
warnings |
An array of messages that have been generated for a specific object. |
|
https://sitename.oracle.com/rest/v19/commerceDocumentsOraclecpqoTransaction/actions/_process_unlock
{ "selections": [3022127625, 3022127628, 3022127629] }






