---
title: "Update an address"
method: PATCH
path: "/v1/people/{person_id}/addresses/{id}"
tags: ["People"]
---

# Update an address

`PATCH /v1/people/{person_id}/addresses/{id}`

Update an existing address for a person

## Request body

- object
  - `line1` string
  - `line2` string
  - `city` string
  - `state` string
  - `zip` string
  - `country_code` string
  - `address_type` 'home' | 'work' | 'mailing' | 'other'
  - `is_primary` boolean

## Response `200`

address updated

- object
  - `id` string
  - `person_id` string
  - `line1` string
  - `line2` string
  - `city` string
  - `state` string
  - `zip` string
  - `country_code` string, nullable
  - `address_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)
