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 Order Details

Sandbox
https://sandbox.trynavigate.co/api/v1
Sandbox
https://sandbox.trynavigate.co/api/v1
GET
/prep/{id}
Use this endpoint to get details of an existing
prep order. The unique work order identifier
of the prep order to fetch must be passed in
the request URL. The value of this parameter must
be picked from the response of the Get Prep Orders
API endpoint.

Request

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

Responses

🟢200OK
application/json
Success.
Body

🟠400Bad Request
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://sandbox.trynavigate.co/api/v1/prep/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "status": 200,
    "message": "Success",
    "payload": {
        "order": {
            "id": 202508435137,
            "fromAddressId": 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",
            "dimensionsUnit": "METRIC",
            "ltl": false,
            "packageType": {},
            "products": [
                {
                    "amazonPrepInstructionIds": {},
                    "batchNumber": "string",
                    "manufacturingDate": "string",
                    "labelOwner": "SELLER",
                    "serialNumber": "string",
                    "expiryDate": "string",
                    "inventory": [
                        {
                            "batchNumber": "string",
                            "expiryDate": "string",
                            "lotNumber": "string",
                            "manufacturingDate": "string",
                            "productTitle": "Samsung QN32Q60RAFXZA Flat 32-Inch QLED 4K Q60 Series (2019) Ultra HD Smart TV with HDR and Alexa Compatibility",
                            "quantity": 100,
                            "serialNumber": null,
                            "sku": "B32AY70LFZ",
                            "warehouseInventory": 50505049
                        }
                    ],
                    "prepQuantity": 1,
                    "preppingInstruction": {},
                    "productSku": "B32AY70LFZ",
                    "rateCardNames": {},
                    "lotNumber": "string",
                    "whoPreps": "SELLER",
                    "product": {
                        "active": true,
                        "additionalAttributes": {},
                        "asin": "B32AY70LFZ",
                        "barcode": "B32AY70LFZ",
                        "createdDate": "2023-10-16",
                        "condition": "New",
                        "imageUrl": "string",
                        "defaultImage": "https://m.media-amazon.com/images/I/91uohwV+k3L.jpg",
                        "description": "string",
                        "fbaInventoryCA": 100,
                        "fbaInventoryUSA": 100,
                        "feedSubmissionId": "string",
                        "height": 16.6,
                        "labelOwner": "SELLER",
                        "lastUpdatedDate": "2025-03-01",
                        "length": 28.5,
                        "minimumThreshold": 0,
                        "otherImages": [
                            "string"
                        ],
                        "prepOwner": "SELLER",
                        "productTitle": "Samsung QN32Q60RAFXZA Flat 32-Inch QLED 4K Q60 Series (2019) Ultra HD Smart TV with HDR and Alexa Compatibility",
                        "productType": "PRODUCT",
                        "sku": "B32AY70LFZ",
                        "trackBatchNumber": false,
                        "trackExpiryDate": false,
                        "trackLotNumber": false,
                        "trackManufacturingDate": false,
                        "trackSerialNumber": false,
                        "warehouseInventory": 50505040,
                        "weight": 3,
                        "width": 1,
                        "defaultImageFromAmazon": true,
                        "dimensionsUnit": "METRIC"
                    },
                    "rateCards": [
                        {
                            "id": 43,
                            "serviceName": "Taping",
                            "serviceImage": null,
                            "serviceDescription": null,
                            "quantity": 10,
                            "unitCost": 1,
                            "unitCostSecondTier": 0,
                            "unitCostThirdTier": 0,
                            "custom": false,
                            "createDate": null,
                            "lastModifiedDate": null,
                            "deleted": false,
                            "allSeller": false,
                            "sellerIds": [
                                null
                            ],
                            "warehouseService": false,
                            "inactive": false
                        }
                    ],
                    "supplies": [
                        []
                    ]
                }
            ],
            "repeatable": true,
            "requestType": "ONLINE",
            "status": "PREP_GENERATED",
            "toAddress": "A2EUQ1WTGCTBG2",
            "toLocationInstruction": "",
            "toMail": "",
            "toName": "",
            "toPhoneNumber": "",
            "toStateCode": "",
            "totalConsumedTime": 0,
            "user": "string"
        }
    }
}
Modified at 2025-11-20 12:06:10
Previous
Create Prep Order
Next
Update Prep Order
Built with