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

200 Response

Success
Body ()
Root Schema : CmAutoUnlockActionsResponseModel
Type: object
Show Source
Nested Schema : Items
Type: array
Title: Items
List of Unlock Actions
Show Source
Nested Schema : CmAutoUnlockActionsModel
Type: object
Show Source
Back to Top

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
    }
  ]
}
Back to Top