---
title: "Create a new customer address"
method: POST
path: "/api/customers/{customerId}/addresses"
tags: ["Customer Address"]
---

# Create a new customer address

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

## Path parameters

- `customerId` string, required

## Request body

- CommonAddressCreateDto — Address with additional context
  - `name` string, nullable — Name of the address (Bob's Shipping, Primary, Reno Warehouse, etc).
  - `address1` string, required — Primary address line.
  - `address2` string, nullable — Second address line.
  - `address3` string, nullable — Third address line.
  - `city` string, required — Address city
  - `stateProvince` string, nullable — Address state/province.
  - `postalCode` string, required — Postal/zip code.
  - `country` string, nullable — Country identifier.
  - `shippingLeadTime` integer, nullable — Lead time for shipping contents.
  - `primaryBilling` boolean — Signifies if this is a primary billing address.
  - `primaryShipping` boolean — Signifies if this is a primary billing address.
  - `email` string, email, nullable — Email address
  - `phone` string, nullable — Associated phone number
  - `fax` string, nullable — Associated fax number
  - `notes` string, nullable — General notes associated to this customer address

## Response `200`

Customer address 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)
