Get operator details
GET/operators/:operatorId
Returns the full profile for a single operator including their roles, facility assignments, and contact information.
Request
Response
- 200
- 401
- 404
Operator details
Unauthorized — missing or invalid API key
Resource not found
Response
{
"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"
}