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

# Update a Contact

`PATCH /contacts/{contactId}`

Updates a given Contact.
Any parameters not provided are left unchanged.

## Path parameters

- `contactId` string, uuid, required — The unique identifier for a resource.

## Request body

- UpdateContact
  - `first_name` string
  - `last_name` string
  - `email` string, email
  - `locale` 'en' | 'fr' | 'de' | 'it' | 'nl' | 'es' | 'pl' | 'pt' | 'ro' — Locale settings used for communication.
  - `phone_number` string, nullable — E.164 format
  - `company_name` string, safe-string, nullable — This property is a [Safe String](https://developers.youtrust.com/reference/oas-specification#safe-string).
  - `job_title` string, safe-string, nullable — This property is a [Safe String](https://developers.youtrust.com/reference/oas-specification#safe-string).
  - `address_line_1` string, safe-string, nullable — This property is a [Safe String](https://developers.youtrust.com/reference/oas-specification#safe-string).
  - `address_line_2` string, safe-string, nullable — This property is a [Safe String](https://developers.youtrust.com/reference/oas-specification#safe-string).
  - `address_city` string, safe-string, nullable — This property is a [Safe String](https://developers.youtrust.com/reference/oas-specification#safe-string).
  - `address_postal_code` string, safe-string, nullable — This property is a [Safe String](https://developers.youtrust.com/reference/oas-specification#safe-string).
  - `address_country` string, safe-string, nullable — This property is a [Safe String](https://developers.youtrust.com/reference/oas-specification#safe-string).
  - `workspace_id` string, uuid, nullable

## Response `200`

OK

- Contact — Newly created contact.
  - `id` string, uuid, required — Unique identifier of the Contact.
  - `first_name` string, required — First name of the Contact.
  - `last_name` string, required — Last name of the Contact.
  - `email` string, email, required — Email of the Contact.
  - `locale` 'en' | 'fr' | 'de' | 'it' | 'nl' | 'es' | 'pl' | 'pt' | 'ro', required — Locale of the Contact.
  - `phone_number` string, required — Phone number of the Contact.
  - `company_name` string, required — Company name of the Contact.
  - `job_title` string, required — Job title of the Contact.
  - `address_line_1` string, required — Primary address line, typically including street number and name.
  - `address_line_2` string, required — Additional address information, such as apartment, suite, or building name.
  - `address_city` string, required — City of the Contact’s address.
  - `address_postal_code` string, required — Postal or ZIP code of the Contact’s address.
  - `address_country` string, required — Country of the Contact’s address.
  - `workspace_id` string, uuid, required — Unique identifier of the Workspace in which the Contact is visible.

## Other responses

- `400` — Bad request
- `401` — Access unauthorized
- `403` — Access forbidden
- `404` — Resource not found
- `405` — This method is not allowed
- `415` — UnsupportedMediaType
- `429` — Too Many Requests, please try again later.
- `500` — Internal Server Error

---

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