This endpoint allows you to create a new FlexFlow request for parcel delivery from one centre to another centre.
pickup_origin: Details of the pickup origin including the centre code, state code, country code, city, address, contacts, pickup note, pickup date, pickup time, and vehicle.
destinations: An array of destination details including centre code, state code, country code, city, address, contacts, delivery note, items, and item weight.
In case of a successful request, the response will include:
tracking_number: The unique tracking number for the parcel.
status: The status of the delivery.
total_amount: The total amount for the delivery.
total_discount_amount: The total discount amount, if any.
total_amount_payable: The total amount payable.
discount_type: The type of discount applied.
discount_description: Description of the discount.
In case of an error, the response will include the status code and a brief error message.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
[
{
"address": "Ikolaba Rd, Ibadan 200285, Oyo, Nigeria",
"centre_code": "lagos-ojodu-berger",
"city": "Lagos",
"contacts": {
"email": "[email protected]",
"name": "Olakunle Olayemi",
"phone_number": "09020500177",
"phone_number_2": ""
},
"country_code": "NG",
"delivery_note": "",
"item_weight": 0.5,
"items": [
{
"height": "",
"length": "",
"name": "Book",
"width": ""
}
],
"state_code": "LA"
}
]