curl --request GET \
--url https://api.nuwebgroup.com/v1/wallet \
--header 'Authorization: Bearer <token>'{
"data": {
"type": "wallets",
"id": 1,
"attributes": {
"id": 1,
"companyId": 1,
"customerId": 9,
"currencyId": 32,
"currencyName": "Pounds",
"currencyCode": "GBP",
"currencySymbol": "Ā£",
"availableBalance": 1500,
"refundableBalanceOnline": 1000,
"refundableBalanceOffline": 1500,
"pendingBalance": 200,
"pendingPayouts": -500
}
}
}Retrieves a single wallet by ID.
curl --request GET \
--url https://api.nuwebgroup.com/v1/wallet \
--header 'Authorization: Bearer <token>'{
"data": {
"type": "wallets",
"id": 1,
"attributes": {
"id": 1,
"companyId": 1,
"customerId": 9,
"currencyId": 32,
"currencyName": "Pounds",
"currencyCode": "GBP",
"currencySymbol": "Ā£",
"availableBalance": 1500,
"refundableBalanceOnline": 1000,
"refundableBalanceOffline": 1500,
"pendingBalance": 200,
"pendingPayouts": -500
}
}
}The 'Bearer' token can be obtained from the token management interface or via the login endpoint using your admin user credentials.
The wallet ID.
Comma-separated list of relationships to include. Supported: customers
Successful request to fetch wallet.
Show child attributes