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

# Update contact

`PATCH /v1/contacts/{id}`

Updates contact details. All fields are optional - only provided fields will be updated. Cannot update soft-deleted contacts (returns 404).

## Path parameters

- `id` string, uuid, required — Contact UUID

## Request body

- UpdateContact
  - `contactListId` union — Contact list ID (set to null to remove from list)
    - string, uuid
    - unknown
    - unknown
  - `firstName` string, nullable — Contact first name (can be set to null)
  - `lastName` string, nullable — Contact last name (can be set to null)
  - `email` string, email, nullable — Contact email (can be set to null)
  - `phone` string, nullable — Contact phone (can be set to null)

## Response `200`

Contact updated successfully

- Contact
  - `id` string, uuid, required — Unique contact identifier
  - `workspaceId` string, uuid, required — Workspace ID that owns this contact
  - `contactListId` string, uuid, nullable, required — Contact list ID (null if not in a list)
  - `firstName` string, nullable, required — Contact first name
  - `lastName` string, nullable, required — Contact last name
  - `email` string, email, nullable, required — Contact email address
  - `phone` string, nullable, required — Contact phone number
  - `createdAt` string, date-time, required — Contact creation timestamp
  - `updatedAt` string, date-time, required — Contact last update timestamp
  - `deletedAt` string, date-time, nullable, required — Soft delete timestamp (null if active)

## Other responses

- `400` — Validation error - invalid request body or contact ID
- `401` — Missing or invalid API key
- `403` — API key does not have access to this contact
- `404` — Contact not found or soft-deleted

---

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