Skip to main content

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

Operator work order assignments

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
}
}