Partner API

Create customer account

Creates a new customer sub-account under your partner account. VoBiz emails the customer their login credentials and (separately) a KYC link via the kyc-sessions endpoint.

post/api/v1/partner/accounts

Request body

namestring required

Customer's full name.

emailstring email required

Customer's email. KYC link is sent here.

phonestring required

E.164 format.

passwordstring required

Min 8 chars, must include a number and a special character.

companystring

Legal company or business name.

countrystring required

ISO 2-letter country code.

Example request

{
  "name": "John Doe",
  "email": "john@example.com",
  "phone": "+919876543210",
  "password": "SecurePass123!",
  "company": "Acme Corp",
  "country": "IN"
}

Response

Customer account created

Changes

No recorded changes to this endpoint across all 1 revision of this API.