Get Wallets List
The API retrieves wallets' details and fetches comprehensive information about all the wallets associated with the organization account.
GET
/payments/wallets
Body Parameters Request
id
url params
string
The id of the wallet
active_only
url params
boolean
If active_only is set to true, only active wallets will be returned. If active_only is set to false, all existing wallets will be returned.
currency
url params
array
string:/^[A-Z]{3,3}$/
list of currency codes to filter by
tag:*
url params
object
a key/values[] set of user tags to filter wallets by
skip
url params
integer
number of items to skip in the result set
take
url params
integer
number of items to return from result set (defaults to 50)
Body Parameters Response
items
array
object
items[].type
string
Entity type (wallet)
items[].id
string
Unique id of wallet
items[].currency
string
3 letter ISO currency code used by wallet
items[].name
string
User given name of wallet
items[].owner
string
id of legal entity owning this wallet
items[].funding
object
Funding account information (banking info needed to send money to wallet)
items[].balance
integer
If wallet state is ACTIVE, returns the current available ballance of the wallet
items[].user_tags
object
A k/v part of user tags assigned to the wallet
items[].state
string
DISABLED, REQUIRES_INPUT, ACTIVE
The current state of the wallet
paging
object
paging.take
integer
number of items requested to be returned from the result set
paging.skip
integer
Number of items requested to skip from the result set
Response
Last updated