---
api: 'Merchant API'
---

# Retrieve a customer

Get the information about a specific customer, including their saved payment methods.

## Endpoint

GET `/api/customers/{customer_id}`

## Returns

### 200

OK

#### Response attributes

- `id` (string)
    Unique identifier for the customer.
- `full_name` (string, optional)
    The full name of the customer.
- `email` (string)
    The email address of the customer.
- `phone` (string, optional)
    The phone number of the customer in [E.164 format](https://en.wikipedia.org/wiki/E.164).
- `created_at` (string)
    The date and time the customer was created.
- `updated_at` (string)
    The date and time the customer was last updated.
- `payment_methods` (array of oneOf)
    Saved payment methods associated with this customer. Each entry represents a
    payment method authorised for future charges. Two types are supported: `card`
    (with full card details) and `revolut_pay` (covers both card-backed and
    account-to-account Revolut Pay variants). Use the `type` field on each item
    to identify the variant.

## Error responses

| HTTP status code | Description |
| --- | --- |
| 401 | Unauthorized |
| 404 | Not Found |
