v2

latestOpenAPI 3.0.0raw.githubusercontent.com2026-02-16143114179.4 KB
Wallets

List wallets

List wallets, optionally filtered by customer or status.

get/api/wallets

Query parameters

customerIdstring
status'ACTIVE' | 'TERMINATED'
pagenumber
limitnumber

Response

Paginated list of wallets

Example response

{
  "data": [
    {
      "id": "clx1234567890",
      "customerId": "clxcust123",
      "name": "Main Wallet",
      "currency": "USD",
      "rateAmount": "1.0000",
      "creditsBalance": "100.0000",
      "balance": "100.0000",
      "consumedCredits": "50.0000",
      "consumedAmount": "50.0000",
      "status": "ACTIVE",
      "customer": {
        "id": "clx1234567890",
        "name": "Jane Doe",
        "email": "jane@example.com"
      }
    }
  ],
  "meta": {
    "total": 150,
    "page": 1,
    "limit": 20,
    "totalPages": 8
  }
}