Get
This is the endpoint for getting the details of an order. The details gotten includes the status of the order and the timelines of the order - pick up date, dispatched date, delivery date etc.
Get Order
Endpoint => /orders/{order_id}
GET /orders/{order_id}
Headers
Name
Type
Description
Authorization *
String
Your Bearer Token
secret-key*
String
Your Secret Key
{
"status": "Success",
"description": "Details Fetched Successfully",
"orderDetails": [
{
"orderNo": "JHAZ27012319",
"recipientName": "Femi2",
"recipientEmail": "",
"recipientAddress": "Idumota3",
"recipientPhone": "08000000000000",
"orderStatus": "Pending Pick-Up",
"statusDescription": null,
"cost": "900",
"createdBy": "C-39006-611",
"OrgRep": "G-ylNt-c7xD",
"pickUpDate": "0000-00-00 00:00:00",
"dispatchDate": null,
"deliveryDate": null,
"returnDate": null,
"dropZoneName": null,
"returnReason": null
}
]
}Last updated