Kobble
  1. Wallets
Kobble
  • Introduction
  • Authorization
    • Authorization
    • Get access token
      POST
  • Beneficiaries
    • List all beneficiaries
      GET
    • Get beneficiary by ID
      GET
    • Create beneficiary
      POST
    • Update beneficiary
      PUT
  • Cards
    • Cards API
    • Get all cards
      GET
    • Create a new card
      POST
    • Get card by ID
      GET
    • Update card status
      PATCH
    • Replace or renew card
      POST
    • Generate card secret
      POST
  • Card Programs
    • Card Programs API
    • Get all programs
      GET
    • Create a new program
      POST
    • Get program by ID
      GET
  • Clients
    • Clients API
    • Get all clients
      GET
    • Get client by ID
      GET
    • Create a new client
      POST
    • Update client status
      PATCH
  • Endusers
    • Endusers API
    • Get all endusers
    • Create a new enduser
    • Get enduser by ID
  • Transactions
    • Transactions API
    • Get all transactions
    • Create a transaction
    • Get transaction by ID
    • Create manual credit transaction
    • Create manual debit transaction
  • Wallets
    • Wallets API
    • Get all wallets
      GET
    • Create a new wallet
      POST
    • Get wallet by ID
      GET
    • Update wallet
      PATCH
  • Relays
    • Relays API
    • Create subscription
  • Webhooks
    • Webhooks API
    • Get all webhooks
    • Create a webhook
    • Delete a webhook
  1. Wallets

Get all wallets

GET
/customers/v1/wallets
Wallets
Retrieve a list of all wallets.

Request

Header Params
Authorization
string 
required
Example:
Bearer {{access_token}}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/customers/v1/wallets' \
--header 'Authorization: Bearer {{access_token}}'

Responses

🟢200OK
application/json
Body
array of:
id
string <uuid>
required
The unique identifier of the wallet.
external_id
string  | null 
required
An external reference ID for the wallet.
created_at
string <date-time>
required
The timestamp when the wallet was created.
updated_at
string <date-time>
required
The timestamp when the wallet was last updated.
holder_id
string <uuid>
required
The unique identifier of the wallet holder.
asset
enum<string> 
required
The type of asset held in the wallet.
Allowed value:
AUD
asset_class
enum<string> 
required
The class of the asset.
Allowed value:
CURRENCY
status
enum<string> 
required
The current status of the wallet.
Allowed values:
ACTIVEINACTIVESUSPENDED
partner_product
enum<string> 
required
The partner product associated with the wallet.
Allowed value:
KOBBLE_AUD_1
total_amount
number <float>
required
The total amount of the asset in the wallet.
amount
number <float>
required
The available amount of the asset in the wallet.
reserved_amount
number <float>
required
The reserved amount of the asset in the wallet.
Example
[
    {
        "id": "8b3f4505-ea69-4d3f-879e-5a7c787e7b09",
        "external_id": "11111",
        "created_at": "2025-01-14T16:56:40.500Z",
        "updated_at": "2025-01-14T16:56:40.504Z",
        "holder_id": "686a9531-e588-4427-a8ad-232bd512838d",
        "asset": "AUD",
        "asset_class": "CURRENCY",
        "status": "ACTIVE",
        "partner_product": "KOBBLE_AUD_1",
        "total_amount": 1,
        "amount": 1,
        "reserved_amount": 0
    },
    {
        "id": "45e50bb0-6cf6-4fb9-9770-902f7cedcef0",
        "external_id": "11111",
        "created_at": "2025-01-14T16:56:40.506Z",
        "updated_at": "2025-01-14T16:56:40.506Z",
        "holder_id": "ddaa6876-c6bf-4d22-962a-f78b3b02d442",
        "asset": "AUD",
        "asset_class": "CURRENCY",
        "status": "INACTIVE",
        "partner_product": "KOBBLE_AUD_1",
        "total_amount": 1,
        "amount": 1,
        "reserved_amount": 0
    }
]
Previous
Wallets API
Next
Create a new wallet
Built with