Authentication
Signup
POST
/
auth
/
signup
/
business
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
Response
201
application/json
User response
The response is of type object
.
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"
}
Assistant
Responses are generated using AI and may contain mistakes.