Fez Business API
  • Introduction
  • API ENDPOINTS
    • Auth
      • Authenticate
      • Logout
      • Change Password
    • Orders
      • Create
      • Get
      • Update
      • Delete
      • Search
      • Search via Waybill Number
      • Status With Date Range
      • Fetch Delivery Cost
      • Track
      • Delivery Time Estimate
    • International Orders
      • Create Import Order
      • Import Items Categories
      • Import Locations
      • Import Delivery Cost
      • Export Locations
      • Create Export Order
      • Export Delivery Cost
    • Users
      • Create
      • Get All
      • Delete
    • Locker
      • Get All
      • Check Availability
    • Webhook
      • Register Order Webhook
      • Order Webhook Request
Powered by GitBook
On this page
  1. API ENDPOINTS
  2. Orders

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
    }
  ]
}
{
    "status": "Error",
    "description": "Organization Secret Key is Required"
}
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://apisandbox.fezdelivery.co/v1/orders/JHAZ27012319',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_HTTPHEADER => array(
    'secret-key: {{Your Secret Key}}'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
PreviousCreateNextUpdate

Last updated 1 year ago