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

# Update contact

`PATCH /v1/contacts/{contactId}`

Update one or more fields on a contact. Only provided fields are changed.

## Path parameters

- `contactId` string, required

## Request body

- object
  - `name` string
  - `email` string
  - `company` string
  - `avatarUrl` string
  - `tags` string[]
  - `isSubscribed` boolean
  - `isBlocked` boolean
  - `notes` string

## Response `200`

Contact updated

- object
  - `success` boolean
  - `contact` object
    - `id` string
    - `name` string
    - `email` string
    - `company` string
    - `avatarUrl` string
    - `tags` string[]
    - `isSubscribed` boolean
    - `isBlocked` boolean
    - `notes` string
    - `updatedAt` string, date-time

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `404` — Resource not found

---

[API](https://skmtc.net/zernio/apis/zernio-api.md) · [All operations](https://skmtc.net/zernio/apis/zernio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/zernio/zernio-api/versions/51932b099b2f/schema)
