---
title: "add customer address"
method: POST
path: "/api/v{version}/customers/{customerId}/address"
tags: ["customers"]
---

# add customer address

`POST /api/v{version}/customers/{customerId}/address`

add new address to existing customer. Permissions requises : SupplierAdminRole, SupplierParcelsManagerRole.

## Path parameters

- `version` string, required
- `customerId` string, uuid, required

## Headers

- `X-Tenant` string, required

## Request body

- CreateCustomerAddressRequest
  - `customerId` string, uuid
  - `address` CreateAddressDto
    - `street` string, nullable
    - `city` string, nullable
    - `cityTerritoryId` string, uuid, nullable
    - `district` string, nullable
    - `districtTerritoryId` string, uuid, nullable
    - `postalCode` string, nullable
    - `country` string, nullable
    - `isPrimary` boolean
    - `coordinates` Coordinates
      - `lat` number, double, nullable
      - `lng` number, double, nullable

## Response `200`

OK

- CreateCustomerAddressResponse
  - `id` string, uuid

---

[API](https://skmtc.net/zrexpress/apis/zrexpress-api.md) · [All operations](https://skmtc.net/zrexpress/apis/zrexpress-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/zrexpress/zrexpress-api/revisions/99b075e0b641/schema)
