sales_copyQuote

WRITE

Copy quote.

Parameters

typeenumrequired
sourceIdstringrequired
targetIdstringrequired
billOfMaterialstringrequired
billOfProcessstringrequired
parametersstringrequired
toolsstringrequired
stepsstringrequired
workInstructionsstringrequired

Call it

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

call_tool
call_tool({
  "name": "sales_copyQuote",
  "arguments": {
    "type": "string",
    "sourceId": "string",
    "targetId": "string",
    "billOfMaterial": "string",
    "billOfProcess": "string",
    "parameters": "string",
    "tools": "string",
    "steps": "string",
    "workInstructions": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "item",
        "quoteLine",
        "method",
        "quoteToQuote"
      ]
    },
    "sourceId": {
      "type": "string"
    },
    "targetId": {
      "type": "string"
    },
    "billOfMaterial": {
      "type": "string"
    },
    "billOfProcess": {
      "type": "string"
    },
    "parameters": {
      "type": "string"
    },
    "tools": {
      "type": "string"
    },
    "steps": {
      "type": "string"
    },
    "workInstructions": {
      "type": "string"
    }
  },
  "required": [
    "type",
    "sourceId",
    "targetId",
    "billOfMaterial",
    "billOfProcess",
    "parameters",
    "tools",
    "steps",
    "workInstructions"
  ]
}