POST
/
v1
/
employees
Create Employee
curl --request POST \
  --url https://api.production.telgea.com/v1/employees \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "email": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "countryCode": "AC"
}'
{
  "id": "<string>",
  "createdAt": "<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.

Body

application/json

Response

200
application/json

Creates a new employee for the authenticated company using the provided email, name, and country.

The response is of type object.