---
title: "Update a specific customer contact"
method: PUT
path: "/api/customers/{customerId}/contacts/{contactId}"
tags: ["Customer Contact"]
---

# Update a specific customer contact

`PUT /api/customers/{customerId}/contacts/{contactId}`

## Path parameters

- `customerId` string, required
- `contactId` string, required

## Request body

- CustomerContactUpdateDto — A customer contact
  - `firstName` string, required — First name
  - `lastName` string, nullable — Last name
  - `position` string, nullable — Position / Job Title
  - `phone` string, nullable — Phone number
  - `cellPhone` string, nullable — Cellphone number
  - `email` string, email, nullable — Email address

## Response `200`

The customer for the given id

## Other responses

- `404` — Customer did not exist or no contact existed at the specified index

---

[API](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi.md) · [All operations](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fulcrumpro/fulcrum-publicapi/revisions/016c1fd45a3f/schema)
