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

# Create an email address for a person

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

Add a new email address to an existing person

## Request body

- object
  - `email` string, email
  - `email_type` 'personal' | 'business' | 'school' | 'other'
  - `is_primary` boolean

## Response `201`

email address created

- object
  - `id` string
  - `person_id` string
  - `email` string
  - `email_type` string
  - `is_primary` boolean

## Other responses

- `400` — bad request - invalid JSON
- `401` — unauthorized - missing or invalid token
- `403` — forbidden

---

[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)
