GET
/
v1
/
employees
/
{id}
Get Employee Details
curl --request GET \
  --url https://api.production.telgea.com/v1/employees/{id} \
  --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.

Path Parameters

id
string
required

Response

200
application/json

Retrieves detailed information about a specific employee belonging to the authenticated company.

The response is of type object.