Update Pricing Models Linked to Pricing Rule
patch
/rest/v19/pricingSetup/rules/{ruleVariableName}/ruleModels
Use this endpoint to add, reorder, or delete price models that are linked to a Pricing Engine Rule.
Request
Supported Media Types
- application/json
Path Parameters
Root Schema : PricingJsonPatch
Type:
Show Source
object-
operations:
array Patch Operations
Title:
Patch OperationsThe array of Json Patch operations.
Nested Schema : Patch Operations
Type:
arrayTitle:
Patch OperationsThe array of Json Patch operations.
Show Source
Nested Schema : PricingJsonPatchOperation
Type:
Show Source
object-
op:
string()
Title:
OpAllowed Values:[ "add", "remove", "replace" ]The operation to be performed. -
path:
string()
Title:
PathThe JSON Pointer string for "path" property. -
value:
object Value
Title:
ValueThe target value.
Nested Schema : Value
Type:
objectTitle:
ValueThe target value.
Response
204 Response
Success
Examples
The following examples show how to add, reorder, or delete price models that are linked to a Pricing Engine Rule 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/rules/oRCLpRCrunAllProfiles
Request Body Sample
Note: You can only link, unlink, or reorder price models using this endpoint.
- The 'add' operation is used to link a price model to a pricing rule. This operation does not add a new price model
- The 'remove' operation is used to unlink a price model to a pricing rule. This operation does not delete price model.
- The 'replace' operation is used to change the order position of the price model.
[{
"op": "add",
"path": "/",
"value": {
"variableName": "absolutePrice"
}
}, {
"op": "replace",
"path": "/configSMS",
"value": {
"orderNumber": 1
}
}, {
"op": "remove",
"path": "/subscriptionCharges"
}
]