Getting started
The notso WMS API is a REST API exposing the same operations available in the WMS UI: orders, inventory, products, sellers, locations, courier configuration, and platform webhooks.
Base URL
https://<your-tenant>.notsowms.ro/api/v1Each tenant runs on its own subdomain (for example wartung.notsowms.ro) and has its own isolated database. API requests target the tenant's subdomain directly.
Authentication
Every request must carry a Bearer token in the format <tenant-slug>.<key>:
http
Authorization: Bearer wartung.eyJhbGc...See the authentication guide for how to issue and rotate tokens.
Versioning
The API is versioned at the URL level (/api/v1). Backwards-incompatible changes ship under a new version prefix (/v2, /v3); existing versions stay live for a deprecation window.
Conventions
- All requests and responses are JSON unless noted otherwise.
- Timestamps are ISO 8601 with timezone (
2026-04-27T13:24:35+00:00). - Money values are decimal strings to avoid floating-point drift.
- Pagination uses Laravel's standard
data + links + metaenvelope.