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. International Orders

Export Locations

This is the endpoint for getting the list of locations where an item can be exported to, from Nigeria. Its also shows the acceptable weights.

Export Location

Endpoint => /orders/export-locations

GET /orders/export-locations

Headers

Name
Type
Description

Authorization *

String

Your Bearer Token

secret-key*

String

Your Secret Key

{
    "status": "Success",
    "description": "Request Successful",
    "data": {
        "exportLocations": [
            {
                "id": 1,
                "name": "Canada(0-2kg)"
            },
            {
                "id": 2,
                "name": "United Kingdom(0-2kg)"
            },
            {
                "id": 3,
                "name": "United States(0-2kg)"
            },
            {
                "id": 4,
                "name": "Europe(0-2kg)"
            },
            {
                "id": 5,
                "name": "Ghana(0-2kg)"
            },
            {
                "id": 6,
                "name": "United Arab Emirates(0-2kg)"
            },
            {
                "id": 7,
                "name": "Cote D'Ivoire(0-2kg)"
            },
            {
                "id": 8,
                "name": "Ireland"
            },
            {
                "id": 9,
                "name": "Australia"
            },
            {
                "id": 10,
                "name": "China"
            },
            {
                "id": 11,
                "name": "Gabon"
            },
            {
                "id": 12,
                "name": "Gambia"
            },
            {
                "id": 13,
                "name": "Guinea"
            },
            {
                "id": 14,
                "name": "Niger"
            },
            {
                "id": 15,
                "name": "Liberia"
            },
            {
                "id": 16,
                "name": "Lebanon"
            },
            {
                "id": 17,
                "name": "India"
            }
        ],
        "exportWeights": [
            {
                "id": 1,
                "name": "0 - 2"
            }
        ]
    }
}
{
    "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/export-locations',
  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;
PreviousImport Delivery CostNextCreate Export Order

Last updated 1 year ago