Update Price Item Charge Group Rate Plans

patch

/rest/v16/pricingSetup/priceItems/{priceItemId}/chargeGroups/{chargeGroupId}/ratePlans

Use this endpoint to update price item charge group rate plans.

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 update price item charge group rate plans by setting the linked property 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/priceItems/part-8523091/chargeGroups/3022941676/ratePlans

Request Body Sample

{
  "op": "replace",
  "path": "/ratePlan2",
  "value": {
    "name": "Rate Plan 2",
    "orderNumber": "1"
  }
}, {
  "op": "replace",
  "path": "/summerRatePlan",
  "value": {
    "name": "Summer Promo",
    "orderNumber": "2"
  }
}

Back to Top