production_copyPeopleBoard
WRITECopy people board.
Parameters
locationIdstringrequiredfromDatestringrequiredtoDatestringrequiredshiftIdstringnullrequiredCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "production_copyPeopleBoard",
"arguments": {
"locationId": "string",
"fromDate": "string",
"toDate": "string",
"shiftId": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"locationId": {
"type": "string"
},
"fromDate": {
"type": "string"
},
"toDate": {
"type": "string"
},
"shiftId": {
"type": [
"string",
"null"
]
}
},
"required": [
"locationId",
"fromDate",
"toDate",
"shiftId"
]
}