Account Holder (First Step)
An Account-Holder resource must be in existence before a Virtual account, a Virtual card or a Physical card issuing operation can take place.
An account-holder represents an individual or business entity. An account holder is required in other to get a virtual account or a virtual card. To get started, create an account holder with name, address information, Identity information, BVN, and whether theyβre an individual or company.
API Reference β‘
curl --location --request POST 'https://api.withmono.com/issuing/v1/accountholders' \
--data-raw '{
"first_name": "ifeoluwa",
"last_name": "olanipekun",
"phone": "2348209840585",
"address": {
"address_line1": "12 banana island",
"lga": "lag",
"city": "lagos",
"state": "lagos"
},
"entity": "INDIVIDUAL",
"bvn": "00000000",
"identity": {
"type": "INTERNATIONAL_PASSPORT",
"number": "00000000",
"url": "https://eu-west-2.amazonaws.com/identity-FunVlKB_OKMHuQFLCT5ek-test_1.png"
}
}'
{
"status": "success",
"message": "Account holder created successfully",
"data": {
"id": "61a73645c2d313658ce82d44"
}
}
Updated 2 months ago
Did this page help you?