Skip to main content

List operators

GET 

/operators

Returns a paginated list of operators (factory floor personnel) in your organization. Each operator record includes identity details, roles, and facility assignments. Filter by role or facility to find specific personnel. Use this to see who is available for production assignments and what roles they hold.

Request

Response

Paginated list of operators

Response
{
"data": [
{
"operatorId": "usr-00412",
"name": "Maria Garcia",
"email": "maria.garcia@example.com",
"phone": "+1-555-0198",
"avatar": null,
"roles": [
"operator"
],
"facilities": [
{
"facilityId": null,
"facilityName": null,
"roles": []
}
],
"status": "active"
}
],
"pagination": {
"offset": 0,
"limit": 20,
"total": 87
}
}