POST /api/v1/users/start-phone-sign-up
{
"firstName": "Henrick",
"lastName": "Kakutalua",
"password": "123456",
"phoneNumber": "+244912345678"
}
200 OK - OTP for Sign-Up Confirmation Already Sent
{
"otpId": "..."
}
403 CONFLICT - Phone Number Already Registered
{
"status": 403,
"errors":
[
{
"source": "phoneNumber",
"code": "phoneNumberAlreadyRegistered"
}
]
}
POST /api/v1/users/confirm-sign-up-with-otp
{
"otpId": "...",
"code": "123456"
}
201 - CREATED - Sign Up Confirmed and Account Created
{
"firstName": "Henrick",
"lastName": "Kakutalua",
"phoneNumber": "+244912345678",
"refreshToken": "...",
"accessToken": "..."
}
404 - NOT FOUND - OTP Not Found
{
"status": 404,
"errors":
[
{
"source": "otpId",
"code": "otpIdNotFound"
}
]
}
400 - BAD REQUEST - Incorrect OTP Code
{
"status": 400,
"errors":
[
{
"source": "code",
"code": "incorrectOtp"
}
]
}
400 - BAD REQUEST - Expired OTP Code
{
"status": 400,
"errors":
[
{
"source": "code",
"code": "expiredOtp"
}
]
}
GET /api/v1/places/autocomplete?query='Univers'?locale=pt_PT
200 OK - OTP for Sign-Up Confirmation Already Sent
{
"page": 1,
"count": 10,
"data": [
{
"id": "...",
"primaryText": "...",
"secondaryText": "...",
"location": {
"latitude": 0.475895,
"longitude": 1.02983773
}
}
]
}
GET /api/v1/routes?origin=13.356855,-8.933601&destination=13.309303,-8.919028
200 OK - Route Successfuly Determined
- Distances are represented in meters.
- Duration is represented in seconds.
{
"origin": {
"latitude": 13.356855,
"longitude": -8.933601
},
"destination": {
"latitude": 13.309303,
"longitude": -8.919028
},
"routes": [{
"bounds": {
"northEast": {
"latitude": ...,
"longitude" ...
},
"southWest": {
"latitude": ...,
"longitude": ...
}
},
"legs": [{
"distance": 500,
"duration": 300,
"steps": [{
"origin": ...,
"destination": ...
}]
}]
}]
}
200 OK - No Routes Found
{
"origin": {
"latitude": 13.356855,
"longitude": -8.933601
},
"destination": {
"latitude": 13.309303,
"longitude": -8.919028
},
"routes": []
}
GET /api/v1/fares?distance=1200&duration=300&page=1&count=30
200 OK - Fare Estimated For Companies
{
"page": 1,
"count": 10,
"data": [
{
"company": {
"id": "...",
"image": "asjjsytd...",
"name": "..."
},
"currency": "AOA",
"amount": 1200.34,
}
]
}
200 OK - No Fares
{
"page": 1,
"count": 10,
"data": []
}