production_upsertAssemblyUnit

WRITE

Upsert assembly unit.

Parameters

modelUploadIdstringrequired
namestringrequired
componentNodeIdsstring[]required
idstringoptional
itemIdstringnulloptional

Call it

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

call_tool
call_tool({
  "name": "production_upsertAssemblyUnit",
  "arguments": {
    "modelUploadId": "string",
    "name": "string",
    "componentNodeIds": []
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "modelUploadId": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "componentNodeIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "itemId": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "modelUploadId",
    "name",
    "componentNodeIds"
  ]
}