---
title: "Create an employment for a person"
method: POST
path: "/v1/people/{person_id}/employments"
tags: ["People"]
---

# Create an employment for a person

`POST /v1/people/{person_id}/employments`

Add a new employment record to an existing person

## Request body

- object
  - `business_name` string, required
  - `role` string
  - `start_date` string, date
  - `end_date` string, date
  - `actively_employed` boolean

## Response `201`

employment created

- Employment
  - `id` string — The employment ID
  - `person_id` string — The person ID
  - `business_name` string, required
  - `role` string, nullable
  - `start_date` string, date, nullable
  - `end_date` string, date, nullable
  - `actively_employed` boolean

## Other responses

- `400` — bad request - invalid JSON
- `401` — unauthorized - missing or invalid token
- `403` — forbidden
- `422` — unprocessable entity - invalid payload

---

[API](https://skmtc.net/slant/apis/slant-public-api-v1.md) · [All operations](https://skmtc.net/slant/apis/slant-public-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/slant/slant-public-api-v1/revisions/b56e0d137554/schema)
