v31

latestOpenAPI 3.0.1MITraw.githubusercontent.com2026-07-082421122.2 KB
Signup

Create a business account

Create a new Mavapay business account

post/auth/signup/business

Request body

emailstring email
passwordstring string
namestring string
businessNamestring string
phonestring string
isDeveloperboolean
countrystring
businessCategorystring
businessTypestring
acceptedTermsboolean

Example request

{
  "email": "johndoe@email.com",
  "password": "password",
  "name": "John Doe",
  "businessName": "John Doe Enterprises",
  "phone": "+2348123456789",
  "isDeveloper": true,
  "country": "Nigeria",
  "businessCategory": "Technology",
  "businessType": "Software",
  "acceptedTerms": true
}

Response

User response

statusstring string
messagestring string

Example response

{
  "status": "ok",
  "message": "business account created successfully"
}