---
title: "Update a specific customer address"
method: PUT
path: "/api/customers/{customerId}/addresses/{customerAddressId}"
tags: ["Customer Address"]
---

# Update a specific customer address

`PUT /api/customers/{customerId}/addresses/{customerAddressId}`

## Path parameters

- `customerId` string, required
- `customerAddressId` string, required

## Request body

- CustomerAddressUpdateDto — Address with additional context for updating for a customer
  - `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`

The customer address for the given id

## Other responses

- `404` — Customer 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)
