---
title: "Update Customer"
method: PATCH
path: "/v1/customers/{customerId}"
tags: ["Customer"]
---

# Update Customer

`PATCH /v1/customers/{customerId}`

Updates the supplied customer fields. Customers are not deleted through this API.

## Path parameters

- `customerId` string, uuid, required

## Request body

- UpdateCustomerDto
  - `name` string
  - `email` string, email
  - `type` 'individual' | 'business'
  - `phone` string
  - `status` 'ACTIVE' | 'INACTIVE' — Whether the customer is active or inactive.

## Response `200`

Customer updated.

- CustomerResponse
  - `statusCode` integer, required
  - `message` string, required
  - `data` Customer, required
    - `id` string, uuid, required
    - `name` string, nullable
    - `email` string, email, required
    - `phone` string, nullable
    - `type` 'individual' | 'business'
    - `status` 'ACTIVE' | 'INACTIVE', required — Whether the customer is active or inactive.
    - `network` 'mainnet' | 'testnet', required
    - `additionalData` object
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time, required

---

[API](https://skmtc.net/blockradar/apis/blockradar-documentation.md) · [All operations](https://skmtc.net/blockradar/apis/blockradar-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/blockradar/blockradar-documentation/revisions/97f95b4cfc0d/schema)
