Status With Date Range

This endpoint return the counts of order per each status - Pending Pick-Up, Picked Up, Dispatched, Delivered, Returned.

Get Order

Endpoint => /orders/statsWithDateRange

POST /orders/statsWithDateRange

Headers

Request Body

{
  "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": n
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://apisandbox.fezdelivery.co/v1/orders/statsWithDateRange',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS =>'{
    "startDate":"2019-02-17",
    "endDate":"2022-11-28"
}',
  CURLOPT_HTTPHEADER => array(
    'secret-key: {{Your Secret Key}}'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

Last updated