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 Prep Locations

Sandbox
https://sandbox.trynavigate.co/api/v1
Sandbox
https://sandbox.trynavigate.co/api/v1
GET
/locations/prep
Sellers must select a prep location when creating an order.
The prep location is the address of the warehouse where the
order is being sent to or sent from.
Prep location is required for every order to keep the
warehouse staff informed about the orders they should expect
to receive or must prepare for dispatch.
The prep locations available to any particular seller are
documented in the contract signed with each seller. Sellers
can use the Get Prep Locations API endpoint to retrieve the
prep locations available to them as part of their contract.

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/prep?search&page&pageSize' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "total": 1,
    "page": 0,
    "pageSize": 1,
    "addresses": [
        {
            "id": 180273,
            "addressee": "AMZ Prep",
            "companyName": "AMZ Prep",
            "addressLineOne": "1 Summerlea Road",
            "addressLineTwo": "YYZ2",
            "city": "Brampton",
            "state": "Ontario",
            "country": "Canada",
            "email": "yyz2@amzprep.com",
            "postalCode": "L6T4V2",
            "isdCode": "CA~+1",
            "phone": "9876543210",
            "createdDate": "2020-04-01T00:00:00.000Z",
            "lastUpdatedDate": "2025-06-27T00:00:00.000Z"
        }
    ]
}
Modified at 2025-10-28 04:42:01
Previous
Update Location
Next
Product Catalog API
Built with