Reserved AccountsCreate Reserved Account

Create Reserved Account

Create a dedicated virtual account for a customer.

Endpoint

POST https://mainapi.cashonrails.com/api/v1/reserved_virtual_account

Request Headers

HeaderTypeDescription
Content-Typestringapplication/json
AuthorizationstringBearer token with your secret key

Request Parameters

ParameterTypeRequiredDescription
customer_codestringYesCustomer’s unique identifier (Get Customer Details)
providerstringYesVirtual account provider e.g, netbank (Get Providers)
otpstringNoOne-time password if required
How to get the customer_code
  1. Create a New Customer: Make a POST request to Create Customer endpoint. The response will contain the customer_code.

  2. Find Existing Customer:

How to get OTP

The customer initiates the process by dialing *565*3# on their phone that is registered under their BVN (Bank Verification Number). They will be prompted to enter their BVN followed by the iGree Code. For your service, the iGree Code is 11113.

Sample Request

curl --location 'https://mainapi.cashonrails.com/api/v1/reserved_virtual_account' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_SECRET_KEY' \
--data '{
    "customer_code": "CUS_2qag1olxkkom7kl",
    "provider": "netbank",
    "otp": "123456"
}'