Update an existing employment record for a person
cURL
curl --request PATCH \ --url https://api.slant.app/v1/people/{person_id}/employments/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "business_name": "New Corp", "role": "Director", "start_date": "2023-01-15", "end_date": "2024-12-31", "actively_employed": false } '
{ "business_name": "Acme Corp", "id": "emp123xyz", "person_id": "abc123xyz", "role": "Software Engineer", "start_date": "2023-01-15", "end_date": "2024-12-31", "actively_employed": true }
OAuth 2.0 Bearer Token from Clerk authentication
The person ID
The employment ID
"New Corp"
"Director"
"2023-01-15"
"2024-12-31"
false
employment updated
"Acme Corp"
"emp123xyz"
"abc123xyz"
"Software Engineer"
true