GET
/
v1
/
employees
List Employees
curl --request GET \
  --url https://api.production.telgea.com/v1/employees \
  --header 'X-API-Key: <api-key>'
[
  {
    "id": "<string>",
    "email": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "createdAt": "<string>",
    "number": {
      "id": "<string>"
    }
  }
]

Authorizations

X-API-Key
string
header
required

API key authentication requiring a valid API key to be included in the X-API-Key header.

Response

200 - application/json

Returns a list of all employees that belong to the authenticated company.

The response is of type object[].