post https://api.personio.de/v1/company/employees
Creates new employee. Status of the employee will be set to active
if hire_date
provided is in the past. Otherwise status will be set to onboarding
. This endpoint responds with id
of created employee in case of success.
POST body example
{
"employee": {
"email": "[email protected]",
"first_name": "John",
"last_name": "Dou",
"gender": "male",
"position": "developer",
"subcompany": "ACME",
"department": "IT",
"office": "Madrid",
"hire_date": "2020-01-31",
"weekly_hours": 40,
"custom_attributes": {
"dynamic_ {{ field uid }} ": "German"
}
}
}