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

# Update Contact

`PATCH /contacts/{contact_id}`

Update a contact.

## Headers

- `authorization` string, nullable

## Request body

- ContactUpdateRequest — Request for updating a contact.
  - `contact_id` string, uuid, required — Contact ID
  - `first_name` string, nullable — First name
  - `last_name` string, nullable — Last name
  - `email` string, nullable — Email address
  - `phone` string, nullable — Phone number
  - `job_title` string, nullable — Job title
  - `provider_account_id` string, nullable — Account ID in the provider CRM system
  - `custom_fields_json` object, nullable — Custom fields from CRM
  - `nomi_insights_json` object, nullable — Nomi-generated insights about the contact

## Response `200`

Successful Response

- ContactResult — Response for contact operations.
  - `id` string, uuid, required — Contact ID
  - `first_name` string, nullable — First name
  - `last_name` string, nullable — Last name
  - `email` string, nullable — Email address
  - `phone` string, nullable — Phone number
  - `job_title` string, nullable — Job title
  - `crm_provider` 'hubspot' | 'attio' | 'none', required — Provider of the CRM system.
  - `provider_contact_id` string, nullable — Contact ID in the provider CRM system
  - `provider_account_id` string, nullable — Account ID in the provider CRM system
  - `status` 'active' | 'archived' | 'deleted' | 'bounced', required — Status specific to contacts in CRM systems.
  - `sync_status` 'synced' | 'pending_crm' | 'sync_failed' | 'not_synced', required — Status of the synchronization with CRM systems.
  - `last_crm_sync_timestamp` string, date-time, nullable — Last time synced with CRM
  - `created_at` string, date-time, required — Creation timestamp
  - `updated_at` string, date-time, required — Last update timestamp
  - `has_company` boolean — Has associated company

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/nomi/apis/fastapi.md) · [All operations](https://skmtc.dev/nomi/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/nomi/fastapi/revisions/63a2f545499c/schema)
