Navigate WMS
  1. Orders
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
      POST
    • Create Inbound Order
      PUT
    • Get Inbound Order Details
      GET
    • Update Inbound Order
      PUT
    • Cancel Inbound Order
      DELETE
    • Get Prep Orders
      POST
    • Create Prep Order
      PUT
    • Get Prep Order Details
      GET
    • Update Prep Order
      PUT
    • Cancel Prep Order
      DELETE
    • Get Manual Orders
      POST
    • Create Manual Order
      PUT
    • Get Manual Order Details
      GET
    • Update Manual Order
      PUT
    • Cancel Manual Order
      DELETE
  • Miscellaneous
    • Get Package Types
    • Get Prep Services
  1. Orders

Get Prep Orders

Sandbox
https://sandbox.trynavigate.co/api/v1
Sandbox
https://sandbox.trynavigate.co/api/v1
POST
/prep
Sellers can use this API endpoint to retrieve
all prep orders created by them. Orders
are returned in pages of a specified size at a
time.
It is also possible to retrieve orders matching
specific keywords - see the list of API parameters
for details. Search keywords are matched against all
text fields of orders such as work order ID,
origin location and prep location.

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

🟠400Bad Request
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://sandbox.trynavigate.co/api/v1/prep?search&pageNumber&pageSize' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "total": 1,
    "page": 1,
    "pageSize": 1,
    "orders": [
        {
            "id": 202508381593,
            "originAddressId": 180273,
            "fromName": "AMZ Prep",
            "fromAddress": "1 Summerlea Road, YYZ2, Brampton, Ontario - L6T4V2 , Canada",
            "fromAddressLine1": "1 Summerlea Road",
            "fromCity": "Brampton",
            "fromStateCode": "ON",
            "fromCountryCode": "CA",
            "fromMail": "yyz2@amzprep.com",
            "fromPhoneNumber": "9876543210",
            "fromLocationInstruction": "string",
            "toName": "string",
            "toAddress": "Canada",
            "toStateCode": "string",
            "toMail": "string",
            "toPhoneNumber": "string",
            "toLocationInstruction": "string",
            "merchantName": "ACME Inc.",
            "createdDateTime": "2025-08-25T08:19:41.213583",
            "shipmentDate": "2025-08-25T08:19:41.213583",
            "shipmentIds": "string",
            "status": "PREP_GENERATED",
            "updatedDateTime": "2025-08-25T08:19:51.93878"
        }
    ]
}
Modified at 2025-11-20 12:06:10
Previous
Cancel Inbound Order
Next
Create Prep Order
Built with