Employee Tables
Update an employment entry from a given employee's employment history.
This endpoint updates an entry in the employee’s employment history table.<br> <p>Note that the entire employnebt entry will be overwritten with the data provided in your payload. Any columns not included in the payload will be cleared (set to empty values).</p>
put/people/{id}/employment/{entry_id}
Path parameters
idstring required
Employee ID.
entry_idinteger required
The entry ID to update.
Request body
Example request
{
"actualWorkingPattern": {
"workingPatternType": "hourly",
"days": {
"monday": 9,
"tuesday": 9,
"wednesday": 9,
"thursday": 9,
"friday": 9
},
"hoursPerDay": 9
},
"siteWorkingPattern": {
"workingPatternType": "hourly",
"days": {
"monday": 9,
"tuesday": 9,
"wednesday": 9,
"thursday": 9,
"friday": 9
},
"hoursPerDay": 9
}
}Response
Entry updated successfully