ADMIN API
The Shoplazza Admin API lets you build apps and integrations that extend Shoplazza functionality.
Overview
The Admin API provides programmatic access to:
- Products and inventory
- Orders and fulfillment
- Customers and marketing
- Store settings and configuration
API Endpoints
Products
Manage your product catalog:
GET /admin/api/2024-01/products.json- List productsGET /admin/api/2024-01/products/{id}.json- Get productPOST /admin/api/2024-01/products.json- Create productPUT /admin/api/2024-01/products/{id}.json- Update productDELETE /admin/api/2024-01/products/{id}.json- Delete product
Orders
Access and manage orders:
GET /admin/api/2024-01/orders.json- List ordersGET /admin/api/2024-01/orders/{id}.json- Get orderPOST /admin/api/2024-01/orders.json- Create orderPUT /admin/api/2024-01/orders/{id}.json- Update order
Customers
Manage customer data:
GET /admin/api/2024-01/customers.json- List customersGET /admin/api/2024-01/customers/{id}.json- Get customerPOST /admin/api/2024-01/customers.json- Create customerPUT /admin/api/2024-01/customers/{id}.json- Update customer
Inventory
Track inventory levels:
GET /admin/api/2024-01/inventory_levels.json- List inventoryPOST /admin/api/2024-01/inventory_levels/set.json- Set inventoryPOST /admin/api/2024-01/inventory_levels/adjust.json- Adjust inventory
Next Steps
Explore specific API resources in the detailed documentation.