Update Pricing Lookup Types

patch

/rest/v16/pricingSetup/pricingLookups

Use this endpoint to update pricing lookup types.

Request

Supported Media Types
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 update pricing lookup types 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/pricingLookups

Request Body Sample

[{
    "op": "add",
    "path": "/",
    "value": {
      "lookupType": "pricePeriods",
      "displayLabel": "Price Periods",
      "description": "The time frequency, periodicity or recurrence with which the price is levied or charged. For example, usage prices may be charged to the customer monthly or weekly.",
      "type": "Standard Lookup"
    }
  }, {
    "op": "remove",
    "path": "/chargeTypes"
  }, {
    "op": "replace",
    "path": "/priceUOMs",
    "value": {
      "description": "A standardized quantity in which products and services may be quoted and sold.",
      "displayLabel": "Unit of Measures"
    }
  }
]
Back to Top