Skip to main content
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.

id
string
required

Unique identifier of the employee

email
string
required

Email address of the employee

firstName
string
required

First name of the employee

lastName
string
required

Last name of the employee

createdAt
string
required

Timestamp when the employee was created

number
object

Details about the number associated with the employee

I