Update Rate Card Template Columns

patch

/rest/v16/pricingSetup/rateCardTemplates/{templateVarName}/columns

Use this endpoint to update rate card template columns.

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 columns for the specified Rate Card Template 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/rateCardTemplates/dataUsageRateCardTemplate/columns

Request Body Sample

{[{
    "op": "add",
    "path": "/",
    "value": {
      "orderNumber": 2,
      "name": "To Country",
      "variableName": "toCountry",
      "key": true,
      "dataType": "String",
      "lookupType": "countryLOV",
      "defaultValue": "",
      "defaultOverridable": false,
      "description": "",
      "active": true,
      "negotiable": true,
      "required": true
    }
  }, {
    "op": "remove",
    "path": "/5001"
  }, {
    "op": "replace",
    "path": "/5003",
    "value": {
      "name": "Price",
      "description": "Rate Column",
      "defaultOverridable": true
    }
  }
]
Back to Top