Update Pricing Rules

patch

/rest/v16/pricingSetup/rules

Use this endpoint to update pricing rules.

Request

Supported Media Types
Body ()
Root Schema : PricingJsonPatch
Type: object
Show Source
Nested Schema : Patch Operations
Type: array
Title: Patch Operations
The array of Json Patch operations.
Show Source
Nested Schema : PricingJsonPatchOperation
Type: object
Show Source
Nested Schema : Value
Type: object
Title: Value
The target value.
Back to Top

Response

204 Response

Success
Back to Top

Examples

The following examples show how to add, update, reorder, or delete pricing rules in Pricing Engine by submitting a PATCH request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl - X PATCH - i - H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" - H "Content-type: application/json"
https://sitename.oracle.com/rest/v16/pricingSetup/rules

Request Body Sample

{
  [{
      "op": "add",
      "path": "/",
      "value": {
        "active": true,
        "name": "US Enterprise Pricing",
        "variableName": "US_enterprise_pricing_rule",
        "startDate": "2021-04-23T18:25:43.511Z",
        "endDate": "2032-04-23T18:25:43.511Z",
        "description": "Pricing rule for U.S. enterprise customers"
      }
    }, {
      "op": "remove",
      "path": "/US_enterprise_pricing_rule_dummy"
    }, {
      "op": "replace",
      "path": "/Enterprise_pricing_new" "value": {
        "orderNumber": 3
      }
    }
  ]
}
Back to Top