logoOPEN BANKING DOCS

Create new customer

Create a new customer with KYC information

POST
/customers
X-API-Key<token>

In: header

Header Parameters

X-API-Keystring

API key for the application

X-App-Idstring

UUID of the application

Formatuuid
firstNamestring

Customer's first name

lastNamestring

Customer's last name

middleName?string | null

Customer's middle name

emailstring

Customer's email address

Formatemail
phoneNumberstring

Customer's phone number

dateOfBirthstring

Customer's date of birth

Formatdate
addressobject
bvn?string | null

Bank Verification Number

nin?string | null

National Identification Number

walletId?string | null

Associated wallet ID

Formatuuid

Response Body

curl -X POST "https://virtual-accounts-api.vantacrest.com/company/v1/customers" \  -H "X-API-Key: string" \  -H "X-App-Id: 497f6eca-6276-4993-bfeb-53cbbbba6f08" \  -H "Content-Type: application/json" \  -d '{    "firstName": "string",    "lastName": "string",    "email": "user@example.com",    "phoneNumber": "string",    "dateOfBirth": "2019-08-24",    "address": {      "street": "string",      "city": "string",      "state": "string",      "country": "string",      "postalCode": "string"    }  }'
{
  "data": "808ac6e4-93ed-4040-85a5-6c71a2444e90"
}
{
  "success": true,
  "message": "string",
  "data": {},
  "timestamp": "2019-08-24T14:15:22Z"
}
{
  "success": true,
  "message": "string",
  "data": {},
  "timestamp": "2019-08-24T14:15:22Z"
}