Returns all operators configured for the authenticated company. The IDs returned here can be used as operatorId in the /reports/operator-overview endpoint.
Authentication
Requires the X-API-Key header.
Query parameters
None.
Response (200 OK)
| Field | Type | Description |
|---|---|---|
data[].id | integer | Operator identifier. |
data[].name | string | Operator name (e.g. "Max Mustermann"). |
Example response
{
"data": [
{ "id": 1, "name": "Max Mustermann" },
{ "id": 2, "name": "Erika Beispiel" }
]
}