sales_upsertQuoteLineAdditionalCharges

WRITE

Upsert quote line additional charges.

Parameters

lineIdstringrequired
updateobjectrequired

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "sales_upsertQuoteLineAdditionalCharges",
  "arguments": {
    "lineId": "string",
    "update": {}
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "lineId": {
      "type": "string"
    },
    "update": {
      "type": "object",
      "properties": {
        "additionalCharges": {}
      },
      "required": [
        "additionalCharges"
      ]
    }
  },
  "required": [
    "lineId",
    "update"
  ]
}