Update Price Agreement Settings

patch

/rest/v19/pricingSetup/agreements/{agreementVariableName}/settings

Use this endpoint to update settings for the specified price agreement.

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 or delete price agreement settings 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 "Content-type: application/json"
https://sitename.oracle.com/rest/v19/pricingSetup/agreements/maintenanceAgreementaccount138/settings

Request Body Sample

[{
    "op": "add",
    "path": "/",
    "value": {
      "columnName": "Service Duration Type"
    }
  }, {
    "op": "add",
    "path": "/",
    "value": {
      "columnName": "Usage UOM"
    }
  }, {
    "op": "remove",
    "path": "/3023760953"
  }
]
Back to Top