Get Commerce Process Auto-Unlock Actions
get
/rest/v19/commerceProcessSetups/{processVarName}/autoUnlockActions
Use this endpoint to retrieve actions that automatically unlock the specified Commerce Process.
Request
Path Parameters
Back to Top
Response
Supported Media Types
- application/json
200 Response
Success
Root Schema : CmAutoUnlockActionsResponseModel
Type:
Show Source
object
-
items:
array Items
Title:
Items
List of Unlock Actions
Nested Schema : CmAutoUnlockActionsModel
Type:
Show Source
object
-
id:
integer()
Title:
ID
ID of Auto unlock actions -
label:
string()
Title:
Label
Label -
selected:
boolean()
Title:
Selected
Selected -
variableName:
string()
Title:
Variable Name
Variable Name
Examples
The following example shows how to retrieve actions that automatically unlock 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/autoUnlockActions
Response Body Sample
{ "items": [ { "id": 3023136164, "label": "Revise Quote", "variableName": "_s_request_quote_revision", "selected": false }, { "id": 3022962141, "label": "Save", "variableName": "cleanSave_t", "selected": false }, { "id": 3023317342, "label": "Self Service Checkout", "variableName": "_s_selfServiceCheckout", "selected": false }, { "id": 3022962823, "label": "Update Asset", "variableName": "updateAsset", "selected": false }, { "id": 3023317346, "label": "Update Price Guidance", "variableName": "_s_updatePriceGuidance_t", "selected": false }, { "id": 3022962757, "label": "Update SFA", "variableName": "oRCL_SFA_UpdateOpportunity", "selected": false } ] }