---
title: "Create a new item vendor"
method: POST
path: "/api/items/{itemId}/vendors"
tags: ["Item Vendor"]
---

# Create a new item vendor

`POST /api/items/{itemId}/vendors`

## Path parameters

- `itemId` string, required

## Request body

- ItemVendorCreateDto — Vendor with additional context for an item.
  - `vendorId` string, required — Vendor id associated to this entity. Please reference /api/vendors endpoint.
  - `vendorItemNumber` string, nullable — The item number for this vendor.
  - `vendorItemName` string, nullable — The item name for this vendor.
  - `price` number, double, nullable — The price of this item for this vendor.
  - `isPrimary` boolean — Signifies if this is the primary vendor for this item.
  - `leadTimeInDays` integer, nullable — Lead time for this vendor.
  - `notes` string, nullable — Notes on this association.

## Response `200`

Item vendor created

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

## Other responses

- `400` — Validation issues with input
- `404` — Item 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)
