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

# Update client contact

`PATCH /clients/contacts/{id}`

Update an existing client contact. All fields are optional - only provided fields will be updated.

## Path parameters

- `id` string, required

## Request body

- UpdateClientContactDto
  - `role` string, nullable — Role of the client contact
  - `department` string, nullable — Department of the client contact
  - `firstName` string — First name of the client contact
  - `lastName` string — Last name of the client contact
  - `emails` UpdateClientContactEmailDto[] — Email addresses of the client contact
    - `email` string, email, required — Email address
    - `purpose` 'personal' | 'work', nullable, required — Purpose of the email address
    - `isPrimary` boolean — Whether this is the primary email address
  - `phoneNumbers` UpdateClientContactPhoneNumberDto[] — Phone numbers of the client contact
    - `phoneNumber` string, required — Phone number in E.164 format
    - `purpose` 'personal' | 'work', nullable, required — Purpose of the phone number
    - `isPrimary` boolean — Whether this is the primary phone number
  - `mainContactId` string — ID of the main contact (user) for this client contact
  - `stageId` string — ID of the pipeline stage
  - `startDate` string, date-time
  - `endDate` string, date-time

## Response `204`

Client contact updated successfully

## Other responses

- `400` — Bad request - validation failed
- `401` — Unauthorized - invalid or missing authentication
- `404` — Client contact not found
- `500` — Error response

---

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