# List patrons

`GET /patrons`

Base URL: `https://api.viewcy.com/2025_06`

## Parameters

- `currency` (query, string, optional) (example: `usd`)
- `page` (query, integer, optional) (example: `1`)
- `perPage` (query, integer, optional) (example: `1`)
- `query` (query, string, optional) (example: `alice`)
- `sort` (query, string, optional) (example: `-totalAmount`)

## Responses

### 200 — Returns the owner's patrons

- `data` (array)
  Items:
    - `object` (string)
    - `id` (string)
    - `email` (string)
    - `firstName` (string)
    - `lastName` (string)
    - `totalAmount` (number)
    - `currency` (string)
    - `orderCount` (integer)
    - `createdAt` (string)
    - `updatedAt` (string)
    - `memberSince` (any)
- `object` (string)
- `page` (integer)
- `totalPages` (integer)
- `perPage` (integer)
- `totalCount` (integer)
- `hasNextPage` (boolean)

### 401 — Returns 401

- `object` (string)
- `status` (integer)
- `message` (string)

---
Full OpenAPI spec: https://developer.viewcy.com/openapi/2025_06_viewcy_api.yaml

Interactive docs: https://developer.viewcy.com/api/list-patrons
