curl --request POST \
--url https://staging.api.mavapay.co/api/v1/auth/signup/business \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"email": "[email protected]",
"password": "password",
"name": "John Doe",
"businessName": "John Doe Enterprises",
"phone": "+2348123456789",
"isDeveloper": true,
"country": "Nigeria",
"businessCategory": "Technology",
"businessType": "Software",
"acceptedTerms": true
}
'