Update Rate Card Data
patch
/rest/v19/pricingSetup/rateCards/{rateCardVariableName}/data
Use this endpoint to update rate card data.
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
Supported Media Types
- application/json
204 Response
Success
Examples
The following examples show how to add, update, or delete Rate Card data 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/rateCards/naPhoneRateCard/data
Request Body Sample
[{
"op": "add",
"path": "/",
"value": {
"fromCountry": "US",
"toCountry": "Canada",
"rate":
[{
"currencyCode": "USD",
"value": 0.10
}, {
"currencyCode": "CAD",
"value": 0.20
}
],
"id": -1
}
}, {
"op": "add",
"path": "/",
"value": {
"fromCountry": "US",
"toCountry": "UK",
"rate":
[{
"currencyCode": "USD",
"value": 0.15
}, {
"currencyCode": "CAD",
"value": 0.30
}
],
"id": -2
}
}, {
"op": "remove",
"path": "/12345"
}, {
"op": "replace",
"path": "/12346",
"value": {
"fromCountry": "US",
"toCountry": "India",
"rate":
[{
"currencyCode": "USD",
"value": 0.10
}, {
"currencyCode": "CAD",
"value": 0.30
}
]
}
}
]