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:
ItemsList of Unlock Actions
Nested Schema : CmAutoUnlockActionsModel
Type:
Show Source
object-
id:
integer()
Title:
IDID of Auto unlock actions -
label:
string()
Title:
LabelLabel -
selected:
boolean()
Title:
SelectedSelected -
variableName:
string()
Title:
Variable NameVariable 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
}
]
}