Create Your Account
Register as a bosta user
- First, you will need to register as a bosta user through calling this API:
POST
https://app.bosta.co/api/v2
/users/business/admin
With this Payload:
{
"email": "email@example.com",
"password": "Your Password",
"profile": {
"firstName": "yourFirstName",
"lastName": "yourLastName",
"phone": "yourPhoneNumber"
},
"heardAboutUsFrom": "Facebook",
"countryId": "60e4482c7cb7d4bc4849c4d5" // For Egyptian businesses
}
Verify Your Phone Number
- Then you will need to verify the phone number you entered through calling these APIs:
POST
With this Payload:
{
"phone": "yourEnteredPhoneNumber",
}
POST
With this Payload:
{
"phone": "yourEnteredPhoneNumber",
"token": "OTP you received on the above phone"
}
Create Your Business
- Once your account is created, enter your business details by calling this API:
POST
https://app.bosta.co/api/v2
/businesses
With this payload:
{
"name": "yourBusinessName",
"salesChannel": "FACEBOOK_SELLER",
"website": "yourStoreURL",
"industry": "Electronics", // Valid values: []
"interestedInServices": [
"Products Shipments" // Valid values: []
]
}