Update Rate Card Data

patch

/rest/v16/pricingSetup/rateCards/{rateCardVarName}/data

Use this endpoint to update data for the specified rate card.

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

Supported Media Types

204 Response

Success
Back to Top

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 - i - H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" - H "Content-type: application/json"
https://sitename.oracle.com/rest/v16/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
        }
      ]
    }
  }
]
Back to Top