Navigate WMS
  1. Inventory
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
      POST
    • Get Inventory Details
      GET
  • 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. Inventory

Get Inventory Details

Sandbox
https://sandbox.trynavigate.co/api/v1
Sandbox
https://sandbox.trynavigate.co/api/v1
GET
/inventory/{id}
Get details for the a particular inventory record.

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/inventory/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "id": 518463576809201,
    "sku": "B32AY70LFZ",
    "productTitle": "Samsung QN32Q60RAFXZA Flat 32-Inch QLED 4K Q60 Series (2019) Ultra HD Smart TV with HDR and Alexa Compatibility.",
    "productId": 180273,
    "productType": "PRODUCT",
    "productPicture": "https://m.media-amazon.com/images/I/91uohwV+k3L.jpg",
    "asin": "B32AY70LFZ",
    "barcode": "B32AY70LFZ",
    "condition": "New",
    "location": {
        "line1": "1 Summerlea Road",
        "city": "Brampton",
        "company": "AMZ Prep",
        "postalCode": "L6T4V2"
    },
    "quantity": 10101010,
    "shippedQuantity": 0,
    "receivedQuantity": 10101010,
    "blockedQuantity": 0,
    "prepOwner": "MARKETPLACE",
    "labelOwner": "MARKETPLACE",
    "owner": {
        "line1": "130 Spadina Avenue",
        "city": "Toronto",
        "postalCode": "M5V2L4",
        "company": "ACME Inc."
    },
    "modifiedAt": "2025-08-05T04:50:23.693Z"
}
Modified at 2025-11-12 03:20:50
Previous
Get Inventory
Next
Get Inbound Orders
Built with