- Introduction
- Authorization
- Beneficiaries
- Cards
- Card Programs
- Clients
- Endusers
- Transactions
- Wallets
- Relays
- Webhooks
Get wallet by ID
GET
/customers/v1/wallets/{id}
Wallets
Request
Path Params
id
string
required
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
A wallet represents a store of value for a specific holder.
id
string <uuid>
required
external_id
string | null
required
created_at
string <date-time>
required
updated_at
string <date-time>
required
holder_id
string <uuid>
required
asset
enum<string>
required
Allowed value:
AUD
asset_class
enum<string>
required
Allowed value:
CURRENCY
status
enum<string>
required
Allowed values:
ACTIVEINACTIVESUSPENDED
partner_product
enum<string>
required
Allowed value:
KOBBLE_AUD_1
total_amount
number <float>
required
amount
number <float>
required
reserved_amount
number <float>
required
Example
{
"id": "c907159f-96bb-4bf3-9cfd-f3944a33304f",
"external_id": "11111",
"created_at": "2025-01-14T16:57:15.372Z",
"updated_at": "2025-01-14T16:57:15.374Z",
"holder_id": "e4edb795-1626-4543-aefe-5f5c587044ed",
"asset": "AUD",
"asset_class": "CURRENCY",
"status": "INACTIVE",
"partner_product": "KOBBLE_AUD_1",
"total_amount": 1,
"amount": 1,
"reserved_amount": 0
}