Get operator assignments
GET/operators/:operatorId/assignments
Returns a paginated list of work order assignments for an operator. Each assignment shows which work order the operator was assigned to, their role (operator, supervisor, or QC inspector), when they were assigned, and the current status. Use this to understand what an operator has been working on and to track workforce allocation over time. Filter by date range to see assignments for a specific period.
Request
Response
- 200
- 401
- 404
Operator work order assignments
Unauthorized — missing or invalid API key
Resource not found
Response
{
"data": [
{
"assignmentId": "7421",
"workOrderId": "6073",
"workOrderNumber": "WO-2025-0042",
"assignmentType": "operator",
"status": "active",
"assignedAt": "2025-04-08T10:30:00Z",
"assignedBy": "usr-00108",
"unassignedAt": null,
"unassignedBy": null,
"notes": null
}
],
"pagination": {
"offset": 0,
"limit": 20,
"total": 87
}
}