production_upsertMaintenanceDispatchItem

WRITE

Upsert maintenance dispatch item.

Parameters

maintenanceDispatchIdstringrequired
itemIdstringrequired
unitOfMeasureCodestringrequired
idstringoptional
quantitynumberoptional
unitCostnumberoptional

Call it

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

call_tool
call_tool({
  "name": "production_upsertMaintenanceDispatchItem",
  "arguments": {
    "maintenanceDispatchId": "string",
    "itemId": "string",
    "unitOfMeasureCode": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "maintenanceDispatchId": {
      "type": "string"
    },
    "itemId": {
      "type": "string"
    },
    "quantity": {
      "type": "number"
    },
    "unitOfMeasureCode": {
      "type": "string"
    },
    "unitCost": {
      "type": "number"
    }
  },
  "required": [
    "maintenanceDispatchId",
    "itemId",
    "unitOfMeasureCode"
  ]
}