Documentation
Knowledge Center
Guides, references, and answers to all your questions about SmartWMS
Quick Start
Get started with SmartWMS in 15 minutes
Product Management
Working with products, categories, and inventory
Warehouse Setup
Configure warehouse structure and rules
Reports & Analytics
Setting up reports and dashboards
Integrations
Connecting to external systems
Advanced Operations
Wave picking, slotting, cycle counts, and transfers
Quality Control
Inspections, QC holds, and lot traceability
IoT Monitoring
Connected devices, sensors, and real-time alerts
Intelligence & Analytics
Product scoring, labor management, forecasting
Mobile & PWA
PWA installation, barcode scanning, offline mode
REST API for Developers
Full-featured API for integrating SmartWMS with any system
Example Request
curl -X GET "https://api.smartwms.one/api/v1/tenant/{tenantId}/products" \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json"
# Response
{
"success": true,
"data": {
"items": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"sku": "SKU-001",
"name": "Product 1",
"totalOnHand": 150,
"isActive": true
}
],
"totalCount": 1234,
"page": 1,
"pageSize": 25,
"totalPages": 50
}
}