Get Wallets
To get wallets, send the request headers and body parameters via GET.
GET/wallet
Wallets
Request Samples
curl
-X GET "https://test-api-dbm.tlpe.io/wallet" \
-H "Content-Type: application/json" \
-H "Authorization: {integratorToken}" \
Responses
200 Successful Response
401 Erroneous Response
Response Samples
{
"timestamp": "2024-06-13 13:13:12 +0000",
"status": 200,
"message": "OK",
"path": "/wallet",
"data": [
{
"walletReferenceId": "{walletReferenceId}",
"walletName": "{walletName}",
"walletDescription": "{walletDescription}",
"currency": "{currencyCode}",
"balance": 10000.00,
"facility": "{facilityName}"
}
]
}
{
"timestamp": "2021-06-14 03:31:03 +0000",
"status": 401,
"error": "Unauthorized",
"path": "/wallet"
}