Navigate WMS
  1. Locations
Navigate WMS
  • Navigate WMS
    • Introduction
  • Authentication
    • Authentication API
    • Authenticate User
      POST
  • Locations
    • Locations API
    • Get Locations
      GET
    • Add Location
      POST
    • Update Location
      PUT
    • Get Prep Locations
      GET
  • Product Catalog
    • Product Catalog API
    • Get Products
      POST
    • Add Product
      PUT
    • Get Product Details
      GET
    • Update Product
      PUT
    • Activate/Deactivate Product
      PATCH
    • Get Bundles
      POST
    • Add Bundle
      PUT
    • Get Bundle Details
      GET
    • Update Bundle
      PUT
    • Activate/Deactivate Bundle
      PATCH
    • Get Supplies
      POST
    • Add Supply
      PUT
    • Get Supply Details
      GET
    • Update Supply
      PUT
    • Activate/Deactivate Supply
      PATCH
    • Get Items
      POST
  • Inventory
    • Inventory API
    • Get Inventory
    • Get Inventory Details
  • Orders
    • Get Inbound Orders
    • Create Inbound Order
    • Get Inbound Order Details
    • Update Inbound Order
    • Cancel Inbound Order
    • Get Prep Orders
    • Create Prep Order
    • Get Prep Order Details
    • Update Prep Order
    • Cancel Prep Order
    • Get Manual Orders
    • Create Manual Order
    • Get Manual Order Details
    • Update Manual Order
    • Cancel Manual Order
  • Miscellaneous
    • Get Package Types
    • Get Prep Services
  1. Locations

Get Locations

Sandbox
https://sandbox.trynavigate.co/api/v1
Sandbox
https://sandbox.trynavigate.co/api/v1
GET
/locations
Sellers can use this API endpoint to retrieve
all addresses in their address book. Addresses
are returned in pages of a specified size at a
time.
It is also possible to retrieve addresses matching
specific keywords - see the list of API parameters
for details. Search keywords are matched against all
text fields of addresses such as address lines,
city, province/state and country name, and postal
code.
The total number of addresses on the seller's address
book is also returned in the API response. This allows
sellers to determine the total number of pages of
addresses they can retrieve.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query Params

Responses

🟢200OK
application/json
Success.
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://sandbox.trynavigate.co/api/v1/locations?search&page&pageSize' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "total": 1,
    "page": 0,
    "pageSize": 1,
    "addresses": [
        {
            "id": 540819,
            "addressType": "SELLER",
            "addressee": "John Smith",
            "companyName": "ACME Inc.",
            "addressLineOne": "1 Madison Square Garden",
            "addressLineTwo": "Turner Street",
            "city": "Toronto",
            "state": "Ontario",
            "country": "Canada",
            "email": "toronto@acme.com",
            "postalCode": "M5V2L4",
            "isdCode": "CA~+1",
            "phone": "9654321087",
            "createdDate": "2024-05-30T00:00:00.000Z",
            "lastUpdatedDate": "2025-06-27T00:00:00.000Z"
        }
    ]
}
Modified at 2025-10-28 04:42:01
Previous
Locations API
Next
Add Location
Built with