PaaS API Docs
Search
K

Get Wallet Details

Read on obtaining information on added individual wallet accounts
You can retrieve details about a user's wallet using this API.

GET /users/{{userId}}/funds/{{wallet_id}}

Parameters
Request Sample
Response Sample
Field
Type
Description
balance.available_balance
Numeric
Balance available for transfer
balance.balance
Numeric
Total balance in the wallet including the transactions in transition
funding_source_type
String
Type of funding source. "WALLET"
id
String
Unique wallet ID once a wallet is successfully created
nick_name
String
Nickname for the wallet
user_id
UUID
ID of the wallet user
verification_status
String
Status of wallet. Wallet in verified status can only be used for transfers
curl --location -g --request POST ‘{{url}}/users/{{userId}}/funds/{{wallet_id}}' \
--header 'X-Client-Id:{{client_id}} ' \
--header 'X-Client-Secret:{{client_secret}}' \
{
"balance": {
"available_balance": 40.00,
"balance": 40.00
},
"funding_source_type": "WALLET",
"id": UUID,
"nick_name": "My Wallet",
"user_id": UUID,
"verification_status": "VERIFIED"
}