API Documentation
CitySwift prices
CitySwift Request
FlexFlow Request
Door-centre
This API endpoint allows you to create a new logistics order for door-to-centre parcel delivery.
POST
/
parcel
/
logistics
/
door-centre
curl --request POST \
--url https://api.mervii.com/beta/parcel/logistics/door-centre \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"destinations": [
{
"address": "Ikolaba Rd, Ibadan 200285, Oyo, Nigeria",
"centre_code": "",
"city": "Lagos",
"contacts": {
"email": "abdul@gmail.com",
"name": "Olakunle Olayemi",
"phone_number": "09020500177",
"phone_number_2": ""
},
"country_code": "NG",
"delivery_note": "",
"item_weight": 1,
"items": [
{
"height": "",
"length": "",
"name": "Book",
"width": ""
}
],
"state_code": "LA"
}
],
"pickup_origin": {
"address": "Ikolaba Rd, Ibadan 200285, Oyo, Nigeria",
"city": "Lagos",
"contacts": {
"email": "abdul@gmail.com",
"name": "Olakunle Olayemi",
"phone_number": "09020500177",
"phone_number_2": ""
},
"country_code": "NG",
"pickup_date": "",
"pickup_note": "",
"pickup_time": "",
"region": {
"latitude": 7.427026700000001,
"longitude": 3.8900142
},
"state_code": "LA",
"vehicle": ""
}
}'
{
"data": {
"discount_description": "0% discount",
"discount_type": "Percetage",
"status": "Pending",
"total_amount": 11192.940875080363,
"total_amount_payable": 11192.940875080363,
"total_discount_amount": 0,
"tracking_number": "202410086789949"
},
"message": "Parcel is successful",
"status": true
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
success
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.mervii.com/beta/parcel/logistics/door-centre \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"destinations": [
{
"address": "Ikolaba Rd, Ibadan 200285, Oyo, Nigeria",
"centre_code": "",
"city": "Lagos",
"contacts": {
"email": "abdul@gmail.com",
"name": "Olakunle Olayemi",
"phone_number": "09020500177",
"phone_number_2": ""
},
"country_code": "NG",
"delivery_note": "",
"item_weight": 1,
"items": [
{
"height": "",
"length": "",
"name": "Book",
"width": ""
}
],
"state_code": "LA"
}
],
"pickup_origin": {
"address": "Ikolaba Rd, Ibadan 200285, Oyo, Nigeria",
"city": "Lagos",
"contacts": {
"email": "abdul@gmail.com",
"name": "Olakunle Olayemi",
"phone_number": "09020500177",
"phone_number_2": ""
},
"country_code": "NG",
"pickup_date": "",
"pickup_note": "",
"pickup_time": "",
"region": {
"latitude": 7.427026700000001,
"longitude": 3.8900142
},
"state_code": "LA",
"vehicle": ""
}
}'
{
"data": {
"discount_description": "0% discount",
"discount_type": "Percetage",
"status": "Pending",
"total_amount": 11192.940875080363,
"total_amount_payable": 11192.940875080363,
"total_discount_amount": 0,
"tracking_number": "202410086789949"
},
"message": "Parcel is successful",
"status": true
}