Get wallets details
Retrieve details of wallet created
With this endpoint, you can easily retrieve information and details of a created wallet.
{{baseUrl}}/api/v1/wallet/ngn/retrieve
This endpoint allows you to get details of a created wallet
GET Parameter | Type | Description |
---|---|---|
walletid _REQUIRED | string | The API will do its best to find a cake matching the provided recipe. |
{
"entity": {
"account_name": "John Doe",
"wallet_id": "dddddddf6-c3b1-4cb9-ba3a-07a98d1aasll",
"wallet_amount": 23000,
"account_number": "2939111020",
"phone_number": "0901111111111",
"bank_name": "WEMA",
"account_numbers": [
{
"account_id": "aaaaaaa-0a59-4a5e-bcfe-219210sskaaxl",
"wallet_id": "dddddddf6-c3b1-4cb9-ba3a-07a98d1aasll",
"account_number": "2939111020",
"last_name": "Doe",
"first_name": "John",
"bank_name": "WEMA",
"date_created": "2022-09-12T14:29:55.936491+01:00"
}
]
}
}
curl -L -X GET '{{baseUrl}}//api/v1/wallet/ngn/retrieve?wallet_id={{wallet_id}}' \
-H 'AppId: {{app_id}}' \
-H 'Authorization: {{secret_key}}'
Updated about 1 year ago