v1
latestOpenAPI 3.0.12026-07-268028223.9 KBPeople
Create an employment for a person
Add a new employment record to an existing person
post/v1/people/{person_id}/employments
Request body
Example request
{
"business_name": "Acme Corp",
"role": "Software Engineer",
"start_date": "2023-01-15",
"end_date": "2024-12-31",
"actively_employed": true
}Response
employment created
Example response
{
"id": "emp123xyz",
"person_id": "abc123xyz",
"business_name": "Acme Corp",
"role": "Software Engineer",
"start_date": "2023-01-15",
"end_date": "2024-12-31",
"actively_employed": true
}