Update Pricing Attributes
patch
                    /rest/v19/pricingSetup/attributes
Use this endpoint to update or delete pricing attributes.
                
                Request
Supported Media Types
                - application/json
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 update or delete pricing attributes in Pricing Engine 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/attributes
Request Body Sample
There are three operations included in this example:
- Add the new line-level attribute 'testAdd'
- Remove the '_quantityValidator' attribute
- Replace the 'myAttribute' Name
[{
    "op": "add",
    "path": "/",
    "value": {
      "name": "New",
      "variableName": "testAdd",
      "dataType": "boolean",
      "attributeLevel": "line"
    }
  }, {
    "op": "remove",
    "path": "/_quantityValidator",
    "value": {
      "variableName": "_quantityValidator"
    }
  }, {
    "op": "replace",
    "path": "/myAttribute",
    "value": {
      "name": "Updated Attribute Name",
      "variableName": "myAttribute"
    }
  }
]