---
title: "Create a new customer contact"
method: POST
path: "/api/customers/{customerId}/contacts"
tags: ["Customer Contact"]
---

# Create a new customer contact

`POST /api/customers/{customerId}/contacts`

## Path parameters

- `customerId` string, required

## Request body

- CustomerContactCreateDto — 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`

Customer contact created

- CreatedResponseDto — Response for a created record
  - `id` string, required — The id of the created record

## Other responses

- `400` — Validation issues with input
- `404` — Customer with the given id did not exist

---

[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/versions/1b5649cff14a/schema)
