Client Wallet
Display your Client Wallet
You can display your sub user's wallet information to check balance and other.
POST METHOD
{{baseUrl}}/api/v2/wallet/clients
{
"email" : "[email protected]"
}
Field | Required | Description |
---|---|---|
true | Sub-user email address |
Response
{
"status": true,
"content": {
"data": [
{
"cur": "NGN",
"currency": "Naira",
"country": "Nigeria",
"flag": "https://qwid.io/assets/svg/flag/ng.svg",
"balance": 0,
"created_at": "2022-07-26T10:17:14.000000Z",
"updated_at": "2022-07-26T10:17:14.000000Z"
},
{
"cur": "USD",
"currency": "Dollar",
"country": "United State Of America",
"flag": "https://qwid.io/assets/svg/flag/us.svg",
"balance": 0,
"created_at": "2022-07-26T10:17:14.000000Z",
"updated_at": "2022-07-26T10:17:14.000000Z"
},
{
"cur": "GBP",
"currency": "Pounds",
"country": "United Kingdom",
"flag": "https://qwid.io/assets/svg/flag/gb.svg",
"balance": 0,
"created_at": "2022-07-26T10:17:14.000000Z",
"updated_at": "2022-07-26T10:17:14.000000Z"
},
{
"cur": "EUR",
"currency": "Euro",
"country": "Europe",
"flag": "https://qwid.io/assets/svg/flag/eu.svg",
"balance": 0,
"created_at": "2022-07-26T10:17:14.000000Z",
"updated_at": "2022-07-26T10:17:14.000000Z"
}
]
}
}
Display Client Wallet using Currency
You can also get your wallet buy filtering the wallet information using the currency
Note
You can only supply a Currency ISO Code of 3-character at the currency
POST METHOD
{{baseUrl}}/api/v2/wallet-cur/clients
{
"cur" : "NGN",
"email" : "[email protected]"
}
Field | Required | Description |
---|---|---|
cur | true | Currency ISO code i.e NGN |
true | Sub-user email address |
Response
{
"status": true,
"content": {
"data": [
{
"cur": "NGN",
"currency": "Naira",
"country": "Nigeria",
"flag": "https://qwid.io/assets/svg/flag/ng.svg",
"id": 65,
"userId": 3,
"balance": 0,
"created_at": "2022-07-26T10:17:14.000000Z",
"updated_at": "2022-07-26T10:17:14.000000Z"
}
]
}
}
Updated almost 2 years ago