Create wallet

Creation of virtual wallet for your end users

This endpoint allows you to create a virtual wallet with a NUBAN

To Create Wallet;

{{baseUrl}}/api/v1/wallet/ngn/create
POST ParametersTypeDescription
dob REQUIREDstring07-Aug-1958
phonenumber _REQUIREDstring
bvnstring
middle_namestring
lastname _REQUIREDstring
firstname _REQUIREDstring
{
    "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 POST '{{baseUrl}}/api/v1/wallet/ngn/create' \
-H 'AppId: {{app_id}}' \
-H 'Authorization: {{secret_key}}'