Update Price Model Item Rate Plans

patch

/rest/v19/pricingSetup/models/{modelVariableName}/priceModelItems/{priceModelItemId}/ratePlans

Use this endpoint to update pricing 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 to update the specified Price Model Item Rate Plans 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/models/_defaultPriceModel/priceModelItems/3022984792/ratePlans

Request Body Sample

[{
    "op": "add",
    "path": "/",
    "value": {
      "ratePlanNumber": "ratePlan3",
      "description": "Rate Plan used for Customer Specific Pricing 03",
      "name": "Rate Plan 3",
      "integrationId": "qpIntegrationId1",
      "startDate": "2023-02-18T10:02:14Z",
      "endDate": "2023-09-18T05:18:59Z",
    }
  }, {
    "op": "replace",
    "path": "/3022985793",
    "value": {
      "description": "New description"
    }
  }, {
    "op": "remove",
    "path": "/30229857934"
  }
]
Back to Top