AndgateBOS gives store teams a production-ready API layer with token auth, store isolation, accounting, e-commerce, analytics, and an installable platform admin console.
Products, orders, customers, purchases, returns, stock movement, and serial tracking are exposed through one consistent API.
Platform admins can manage tenants, subscriptions, permissions, audit logs, support, notifications, and e-commerce operations.
Public storefront APIs, customer cart flows, analytics endpoints, and report exports let web, mobile, and back-office tools share data.
API Reference
Organised into logical groups — each group maps directly to a tag in the Swagger UI.
Security
The API issues personal access tokens. Attach them as Bearer tokens on every protected request.
Platform Features
Key capabilities baked into every API response and flow.
success, message, data, errors, and meta fields.products.create, orders.view) enforced via middleware on every route.Response Format
Every endpoint — success or failure — returns the same envelope so your client code stays simple.
| HTTP Status | Meaning | success field |
|---|---|---|
| 200 | OK — request succeeded | true |
| 201 | Created — resource was created | true |
| 401 | Unauthorized — token missing or invalid | false |
| 403 | Forbidden — no permission for this action | false |
| 404 | Not Found — resource does not exist | false |
| 422 | Unprocessable — validation failed | false |
Open the interactive Swagger UI to explore every endpoint, try live requests, and download the OpenAPI spec.