---
title: "Get Customer by ID"
method: GET
path: "/v1/customers/{customerID}"
tags: ["Customers"]
---

# Get Customer by ID

`GET /v1/customers/{customerID}`

The **Get Customer by ID** endpoint allows you to retrieve detailed information about a specific customer using their unique identifier. Use this endpoint to access and manage individual customer records within your organization.

## Path parameters

- `customerID` string, required

## Response `200`

OK

- InternalResponseCustomersResponseCustomer
  - `data` CustomersResponseCustomer
    - `created_at` string — The timestamp indicating when the customer record was created.
    - `customer_ident` string — The unique identifier for the customer.
    - `email` string — The email address associated with the customer.
    - `guest` boolean — Indicates whether the customer is a guest (true) or not (false).
    - `id` string — The unique identifier for the customer.
    - `is_deleted` boolean — Indicates whether the customer has been deleted (true) or not (false).
    - `last_payment_date` string — The timestamp indicating the date of the last payment made by the customer.
    - `metadata` object — Additional metadata associated with the customer.
    - `name` string — The name of the customer.
    - `organisation_id` string — The identifier of the organization to which the customer belongs.
    - `payments_count` integer — The total count of payments made by the customer.
    - `phone` string — The phone number associated with the customer.
    - `properties` object — Additional custom properties associated with the customer.
    - `updated_at` string — The timestamp indicating when the customer record was last updated.
    - `wallet_address` string — The wallet address associated with the customer for cryptocurrency transactions.
  - `error` boolean

## Other responses

- `400` — Bad Request
- `500` — Internal Server Error

---

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