People
Create company employee.
<br>This endpoint allows you to create a new employee in the system. <br> The request body must include the minimum required fields: email, firstName, surname, and the work object with site and startDate.<br> While not all fields are mandatory, we recommend populating as many fields as possible to ensure complete employee records from the start. <br> Specifically, it's recommended to include work.department and work.title. <br>You can include any additional fields from the Fields Metadata API to enrich the employee's profile during creation.
post/people
Request body
Example request
{
"firstName": "Joe",
"surname": "Doe",
"email": "joe.doe@examplecompany.com",
"work": {
"site": "New York",
"startDate": "2024-01-01",
"department": "Accounting",
"title": "Chief Engineer"
}
}Response
Employee