---
title: "Update contact"
method: PATCH
path: "/v1/contacts/{contact_id}"
tags: ["Contacts"]
---

# Update contact

`PATCH /v1/contacts/{contact_id}`

Update an existing contact

## Path parameters

- `contact_id` string, required

## Request body

- object
  - `number` string — The contact's phone number
  - `name` string, nullable — The contact's name
  - `email` string, email, nullable — The contact's email address
  - `address1` string, nullable — The contact's address line 1
  - `state` string, nullable — The contact's state
  - `zip` string, nullable — The contact's zip code
  - `city` string, nullable — The contact's city
  - `notes` string, nullable — Notes about the contact
  - `custom` object, nullable — Custom JSON data for the contact
  - `is_unsubscribed` boolean, nullable — Whether the contact has unsubscribed

## Response `200`

Success

- object
  - `data` object
    - `id` string
    - `number` string
    - `name` string, nullable
    - `email` string, nullable
    - `address1` string, nullable
    - `state` string, nullable
    - `zip` string, nullable
    - `city` string, nullable
    - `notes` string, nullable
    - `custom` object, nullable
    - `is_unsubscribed` boolean, nullable

## Other responses

- `422` — Validation error

---

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