POST
/
wallet
Create Wallet
curl --request POST \
  --url https://nini.monieswitch.com/wallet \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'address=10, Wibby Street Aguda Lagos' \
  --form bvn=23456789031 \
  --form dateOfBirth=26-01-2000 \
  --form [email protected] \
  --form 'name=Baba Rabby' \
  --form phoneNumber=09088331131 \
  --form tier=3 \
  --form documentId=@example-file
{
  "data": {
    "accountName": "Baba Rabby",
    "accountNumber": "4441519402",
    "balance": 0,
    "bankCode": "999270",
    "bankName": "Xpress Wallet",
    "mode": "SANDBOX",
    "status": "ACTIVE",
    "tier": 3,
    "walletId": "16c8c17b-8a66-4f8b-b195-269e92f831ae"
  },
  "message": "Wallet successfully created.",
  "status": true
}

Headers

Authorization
string
required

Set value to 'Bearer {{MERCHANT_SECRET_KEY}}'

Body

multipart/form-data

Response

200 - application/json

Create Wallet

The response is of type object.