POST
/
auth
/
signup
/
business
Create a business account
curl --request POST \
  --url https://staging.api.mavapay.co/api/v1/auth/signup/business \
  --header 'Content-Type: application/json' \
  --data '{
  "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
}'
{
  "status": "success",
  "message": "business account created successfully"
}

Body

application/json
email
string<email>
Example:

"johndoe@email.com"

password
string<string>
Example:

"password"

name
string<string>
Example:

"John Doe"

businessName
string<string>
Example:

"John Doe Enterprises"

phone
string<string>
Example:

"+2348123456789"

isDeveloper
boolean
Example:

true

country
string
Example:

"Nigeria"

businessCategory
string
Example:

"Technology"

businessType
string
Example:

"Software"

acceptedTerms
boolean
Example:

true

Response

User response

status
string<string>
Example:

"success"

message
string<string>
Example:

"business account created successfully"