production_issueMaterial

WRITE

Issue material.

Parameters

operationIdstringrequired
itemIdstringrequired
quantitynumberrequired
materialIdstringoptional
jobOperationStepIdstringoptional
adjustmentTypestringoptional
acknowledgedbooleanoptional

Call it

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

call_tool
call_tool({
  "name": "production_issueMaterial",
  "arguments": {
    "operationId": "string",
    "itemId": "string",
    "quantity": 0
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "operationId": {
      "type": "string"
    },
    "itemId": {
      "type": "string"
    },
    "quantity": {
      "type": "number"
    },
    "materialId": {
      "type": "string"
    },
    "jobOperationStepId": {
      "type": "string"
    },
    "adjustmentType": {
      "type": "string"
    },
    "acknowledged": {
      "type": "boolean"
    }
  },
  "required": [
    "operationId",
    "itemId",
    "quantity"
  ]
}