For the complete documentation index, see llms.txt. This page is also available as Markdown.

Import Locations

This is the endpoint for getting the list of locations where an item can be imported from to Nigeria.

Import Location

Endpoint => /orders/import-locations

GET /orders/import-locations

Headers

Name
Type
Description

Authorization *

String

Your Bearer Token

secret-key*

String

Your Secret Key

{
    "status": "Success",
    "description": "Request Successful",
    "data": {
        "importLocations": [
            {
                "id": 1,
                "city": null,
                "state": null,
                "name": "Niger"
            },
            {
                "id": 2,
                "city": "Streatham",
                "state": "London",
                "name": "United Kingdom"
            },
            {
                "id": 3,
                "city": "Igando",
                "state": "Texas",
                "name": "United States"
            },
            {
                "id": 4,
                "city": "New Delhi",
                "state": "Karnata",
                "name": "India"
            },
            {
                "id": 5,
                "city": "London",
                "state": "Streatham",
                "name": "Palestine"
            }
        ]
    }
}

Last updated