items_copyItem

WRITE

Copy item.

Parameters

targetIdstringrequired
sourceIdstringrequired
billOfMaterialstringrequired
billOfProcessstringrequired
parametersstringrequired
toolsstringrequired
stepsstringrequired
workInstructionsstringrequired

Call it

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

call_tool
call_tool({
  "name": "items_copyItem",
  "arguments": {
    "targetId": "string",
    "sourceId": "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": {
    "targetId": {
      "type": "string"
    },
    "sourceId": {
      "type": "string"
    },
    "billOfMaterial": {
      "type": "string"
    },
    "billOfProcess": {
      "type": "string"
    },
    "parameters": {
      "type": "string"
    },
    "tools": {
      "type": "string"
    },
    "steps": {
      "type": "string"
    },
    "workInstructions": {
      "type": "string"
    }
  },
  "required": [
    "targetId",
    "sourceId",
    "billOfMaterial",
    "billOfProcess",
    "parameters",
    "tools",
    "steps",
    "workInstructions"
  ]
}