Update Price Agreement Charges

patch

/rest/v16/pricingSetup/agreements/{agreementVarName}/priceAgreementItems/{priceAgreementItemId}/charges

Use this endpoint to update charges for the specified price agreement item.

Request

Supported Media Types
Path Parameters
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 update charges for the specified price agreement item 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/agreements/promoAPIaccount112/priceAgreementItems/3023155942/charges

Request Body Sample

[{
    "op": "replace",
    "path": "/3023155943",
    "value": {
      "prices": [{
          "currencyCode": "USD",
          "value": 9999
        }
      ],
      "blockPrices": []
    }
  }
]
Back to Top