Navigate WMS
  1. Product Catalog
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. Product Catalog

Add Supply

Sandbox
https://sandbox.trynavigate.co/api/v1
Sandbox
https://sandbox.trynavigate.co/api/v1
PUT
/supplies
Sellers can use this API endpoint to add a new
supply to their catalog.

Request

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

Examples

Responses

🟢200OK
application/json
Success.
Body

🟠400Bad Request
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request PUT 'https://sandbox.trynavigate.co/api/v1/supplies' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "supply": {
        "sku": "1887397557",
        "productTitle": "Sandalwood Incense Sticks",
        "dimensionsUnit": "IMPERIAL",
        "length": 7,
        "width": 4,
        "height": 4,
        "weight": 0.1
    }
}'
Response Response Example
200 - Example 1
{
    "status": 200,
    "message": "Supply added successfully.",
    "payload": {
        "itemSku": "1887397557",
        "itemDetails": {
            "sku": "1887397557",
            "productTitle": "Packaging Material",
            "description": "string",
            "productType": "SUPPLY",
            "dimensionsUnit": "METRIC",
            "length": 1.3,
            "width": 1.9,
            "height": 1.4,
            "weight": 3.5,
            "active": true,
            "imageUrl": null,
            "otherImages": null,
            "createdDate": "2025-07-25",
            "lastUpdatedDate": "2025-07-25"
        }
    }
}
Modified at 2025-11-12 03:20:50
Previous
Get Supplies
Next
Get Supply Details
Built with