---
title: "Create a new vendor contact"
method: POST
path: "/api/vendors/{vendorId}/contacts"
tags: ["Vendor Contact"]
---

# Create a new vendor contact

`POST /api/vendors/{vendorId}/contacts`

## Path parameters

- `vendorId` string, required

## Request body

- VendorContactCreateDto — A vendor 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
  - `fax` string, nullable — Fax number
  - `notes` string, nullable — Internal notes about this contact.
  - `emailPurchaseOrders` boolean — Whether this contact should receive purchase order emails.

## Response `200`

Vendor 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` — Vendor 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/revisions/016c1fd45a3f/schema)
