Get details of a virtual account

Get details of single-use virtual account.

URI

GET

https://api.tryduplo.com/v1/virtual-accounts/:account_ref?business_id={BUISNESS_ID_VALUE}

Parameters

Authorization string

set value to Bearer SECRET_KEY

Query Param

business_id string required

Business ID

Path Param

account_ref string

Virtual's account reference

Sample request

curl --location --request GET 'https://api.tryduplo.com/v1/virtual-accounts/:account_ref?business_id={YOUR_VALUE}' \
--header 'Authorization: Bearer SECRET_KEY'

Duplo Response

{
   "data": {
       "provider": {
           "bank_code": "053",
           "bank_name": "Providus",
           "id": "providus",
           "default": true
       },
       "email": "alindavdsin@gmail.com",
       "phone_number": "08085279945",
       "account_ref": "act_yFGtXdFwZuPl",
       "created_at": "2021-09-28T20:10:07.000Z",
       "status": "active",
       "account_name": "MyName new",
       "account_number": "9977658630",
       "bvn": "39372746283"
   },
   "errors": {},
   "message": ""
}

Last updated