sales_upsertQuoteLinePrices

WRITE

Upsert quote line prices.

Parameters

quoteIdstringrequired
lineIdstringrequired
quoteLinePricesobjectrequired

Call it

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

call_tool
call_tool({
  "name": "sales_upsertQuoteLinePrices",
  "arguments": {
    "quoteId": "string",
    "lineId": "string",
    "quoteLinePrices": {}
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "quoteId": {
      "type": "string"
    },
    "lineId": {
      "type": "string"
    },
    "quoteLinePrices": {
      "type": "object",
      "properties": {
        "quoteLineId": {
          "type": "string"
        },
        "unitPrice": {
          "type": "number"
        },
        "leadTime": {
          "type": "number"
        },
        "discountPercent": {
          "type": "number"
        },
        "quantity": {
          "type": "number"
        },
        "categoryMarkups": {}
      },
      "required": [
        "quoteLineId",
        "unitPrice",
        "leadTime",
        "discountPercent",
        "quantity"
      ]
    }
  },
  "required": [
    "quoteId",
    "lineId",
    "quoteLinePrices"
  ]
}