Update Price Agreements

patch

/rest/v16/pricingSetup/agreements

Use this endpoint to update price agreements.

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 update price agreements 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

Request Body Sample

[{
    "op": "add",
    "path": "/",
    "value": {
      "name": "example price agreement 2",
      "description": "example  price agreement 2",
      "startDate": "2023-10-26T07:00:00Z",
      "endDate": "2023-10-28T07:00:00Z",
      "customerId": "account113",
      "customerName": "Company_account113"
    }
  }, {
    "op": "remove",
    "path": "/examplePriceAgreement1"
  }, {
    "op": "replace",
    "path": "/examplePriceAgreement3",
    "value": {
      "name": "example price agreement 3",
      "variableName": "examplePriceAgreement3",
      "description": "example price agreement 3 update",
      "customerId": "account114",
      "customerName": "Company_account114"
    }
  }
]
Back to Top