production_upsertPeopleAssignment

DESTRUCTIVE

Upsert people assignment.

Parameters

locationIdstringrequired
workCenterIdstringrequired
employeeIdstringrequired
datestringrequired
shiftIdstringnullrequired
notestringoptional
undefined = whole shift (replaces other rows) */ hoursnumberoptional

Call it

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

call_tool
call_tool({
  "name": "production_upsertPeopleAssignment",
  "arguments": {
    "locationId": "string",
    "workCenterId": "string",
    "employeeId": "string",
    "date": "string",
    "shiftId": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "locationId": {
      "type": "string"
    },
    "workCenterId": {
      "type": "string"
    },
    "employeeId": {
      "type": "string"
    },
    "date": {
      "type": "string"
    },
    "shiftId": {
      "type": [
        "string",
        "null"
      ]
    },
    "note": {
      "type": "string"
    },
    "undefined = whole shift (replaces other rows) */\n    hours": {
      "type": "number"
    }
  },
  "required": [
    "locationId",
    "workCenterId",
    "employeeId",
    "date",
    "shiftId"
  ]
}