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

Retrieves detailed information about a specific employee belonging 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