FlexFlow prices
Door - Centre
API Documentation
CitySwift prices
CitySwift Request
FlexFlow Request
Door - Centre
Home Pickup to Cenntre (Hub)
The endpoint is used to calculate the price for delivering items from a pickup origin (home pickup) to one or more destinations, with a specific centre for the destination.
POST
/
price
/
door-centre
curl --request POST \
--url https://api.mervii.com/beta/price/door-centre \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"destinations": [
{
"addresss": "",
"centre_code": "",
"country_code": "",
"item_weight": 1,
"state_code": ""
}
],
"pickup_origin": {
"city": "",
"country_code": "NG",
"region": {
"latitude": 7.427026700000001,
"longitude": 3.8900142
},
"state_code": "LA"
}
}'
{
"data": {
"destinations": [
{
"addresss": null,
"centre_code": "ibadan-sango",
"country_code": null,
"dropoff_centre": {
"centre_code": "ibadan-sango",
"centre_name": "Sango Ibadan"
},
"item_weight": 1,
"price": {
"amount": 3000.98,
"amount_payable": 3000.98,
"discount_amount": 0,
"discount_description": "0% discount",
"discount_type": "Percetage",
"distance": " Kilometres to the drop off center ",
"duration": "1-4 days"
},
"state_code": null,
"weight": "1"
}
],
"discount_description": "0% discount",
"discount_type": "Percetage",
"pickup_origin": {
"city": null,
"country_code": "NG",
"pickup_centre": {
"centre_code": "lagos-ojodu-berger",
"centre_name": "Ojodu Berger Lagos"
},
"region": {
"latitude": 7.427026700000001,
"longitude": 3.8900142
},
"state_code": "LA"
},
"total_amount": 11192.940875080363,
"total_amount_payable": 11192.940875080363,
"total_discount_amount": 0
},
"message": "get price",
"status": true
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Example:
[
{
"addresss": "",
"centre_code": "",
"country_code": "",
"item_weight": 1,
"state_code": ""
}
]
Response
200
application/json
success
Example:
"ibadan-sango"
Example:
1
Example:
3000.98
Example:
3000.98
Example:
0
Example:
"0% discount"
Example:
"Percetage"
Example:
" Kilometres to the drop off center "
Example:
"1-4 days"
Example:
"1"
Example:
[
{
"addresss": null,
"centre_code": "ibadan-sango",
"country_code": null,
"dropoff_centre": {
"centre_code": "ibadan-sango",
"centre_name": "Sango Ibadan"
},
"item_weight": 1,
"price": {
"amount": 3000.98,
"amount_payable": 3000.98,
"discount_amount": 0,
"discount_description": "0% discount",
"discount_type": "Percetage",
"distance": " Kilometres to the drop off center ",
"duration": "1-4 days"
},
"state_code": null,
"weight": "1"
}
]
Example:
"0% discount"
Example:
"Percetage"
Example:
"NG"
Example:
"LA"
Example:
11192.940875080363
Example:
11192.940875080363
Example:
0
Example:
"get price"
Example:
true
Was this page helpful?
curl --request POST \
--url https://api.mervii.com/beta/price/door-centre \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"destinations": [
{
"addresss": "",
"centre_code": "",
"country_code": "",
"item_weight": 1,
"state_code": ""
}
],
"pickup_origin": {
"city": "",
"country_code": "NG",
"region": {
"latitude": 7.427026700000001,
"longitude": 3.8900142
},
"state_code": "LA"
}
}'
{
"data": {
"destinations": [
{
"addresss": null,
"centre_code": "ibadan-sango",
"country_code": null,
"dropoff_centre": {
"centre_code": "ibadan-sango",
"centre_name": "Sango Ibadan"
},
"item_weight": 1,
"price": {
"amount": 3000.98,
"amount_payable": 3000.98,
"discount_amount": 0,
"discount_description": "0% discount",
"discount_type": "Percetage",
"distance": " Kilometres to the drop off center ",
"duration": "1-4 days"
},
"state_code": null,
"weight": "1"
}
],
"discount_description": "0% discount",
"discount_type": "Percetage",
"pickup_origin": {
"city": null,
"country_code": "NG",
"pickup_centre": {
"centre_code": "lagos-ojodu-berger",
"centre_name": "Ojodu Berger Lagos"
},
"region": {
"latitude": 7.427026700000001,
"longitude": 3.8900142
},
"state_code": "LA"
},
"total_amount": 11192.940875080363,
"total_amount_payable": 11192.940875080363,
"total_discount_amount": 0
},
"message": "get price",
"status": true
}