sales_upsertQuoteLineMethod

WRITE

Upsert quote line method.

Parameters

itemIdstringrequired
quoteIdstringrequired
quoteLineIdstringrequired
configurationanyoptional
partsobjectoptional

Call it

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

call_tool
call_tool({
  "name": "sales_upsertQuoteLineMethod",
  "arguments": {
    "itemId": "string",
    "quoteId": "string",
    "quoteLineId": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "itemId": {
      "type": "string"
    },
    "quoteId": {
      "type": "string"
    },
    "quoteLineId": {
      "type": "string"
    },
    "configuration": {},
    "parts": {
      "type": "object",
      "properties": {
        "billOfMaterial": {
          "type": "boolean"
        },
        "billOfProcess": {
          "type": "boolean"
        },
        "parameters": {
          "type": "boolean"
        },
        "tools": {
          "type": "boolean"
        },
        "steps": {
          "type": "boolean"
        },
        "workInstructions": {
          "type": "boolean"
        }
      },
      "required": [
        "billOfMaterial",
        "billOfProcess",
        "parameters",
        "tools",
        "steps",
        "workInstructions"
      ]
    }
  },
  "required": [
    "itemId",
    "quoteId",
    "quoteLineId"
  ]
}