Update Commerce Process Document Modify Options

patch

/rest/v19/commerceProcessSetups/{processVarName}/documents/{docVarName}/modifyTab

Use this endpoint to update modify options for the specified Commerce Process document.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : DocModifyRequestModel
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : DocModifyItemModel
Type: object
Show Source
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : DocModifyRequestModel
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : DocModifyItemModel
Type: object
Show Source
Back to Top

Examples

The following example shows how to update modify options for the specified Commerce Process document by submitting a PATCH request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X PATCH -H "Authorization: Bearer <token>" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/commerceProcessSetups/automationStd/documents/transactionLine/modifyTab

Request Body Sample

{
  "items": [
    {
      "attributeId": 3022948910,
      "useFormula": true,
      "overrideModify": false,
      "customAttribute": false,
      "attributeVarName": "_customer_t_city"
    }
  ]
}
Back to Top