πŸ†™Virtual Account KYC

Bind KYC to a virtual account

POST https://api.billstack.co/v2/thirdparty/upgradeVirtualAccount/

This endpoint accept a customer's email with a bvn and tied it to all of his generated account.s

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

customer

string

Email of the user. i.e the email you used to reserved the virtual account under your merchant account.

bvn

number

BVN of the user

// Sample request
{
    "customer" : "user@billstack.co",
    "bvn" : "************"
}

Response

{
  "responseCode": 00,
  "status": true,
  "message": "Validated"
}

Last updated