## API Migration (Complete)
### New Shop API Endpoints Created
- **Products API** (app/api/v1/shop/products.py)
- GET /api/v1/shop/products - Product catalog with pagination/search/filters
- GET /api/v1/shop/products/{id} - Product details
- **Cart API** (app/api/v1/shop/cart.py)
- GET /api/v1/shop/cart/{session_id} - Get cart
- POST /api/v1/shop/cart/{session_id}/items - Add to cart
- PUT /api/v1/shop/cart/{session_id}/items/{product_id} - Update quantity
- DELETE /api/v1/shop/cart/{session_id}/items/{product_id} - Remove item
- DELETE /api/v1/shop/cart/{session_id} - Clear cart
- **Orders API** (app/api/v1/shop/orders.py)
- POST /api/v1/shop/orders - Place order (authenticated)
- GET /api/v1/shop/orders - Order history (authenticated)
- GET /api/v1/shop/orders/{id} - Order details (authenticated)
- **Auth API** (app/api/v1/shop/auth.py)
- POST /api/v1/shop/auth/register - Customer registration
- POST /api/v1/shop/auth/login - Customer login (sets cookie at path=/shop)
- POST /api/v1/shop/auth/logout - Customer logout
- POST /api/v1/shop/auth/forgot-password - Password reset request
- POST /api/v1/shop/auth/reset-password - Password reset
**Total: 18 new shop API endpoints**
### Middleware Enhancement
Updated VendorContextMiddleware (middleware/vendor_context.py):
- Added is_shop_api_request() to detect /api/v1/shop/* routes
- Added extract_vendor_from_referer() to extract vendor from Referer header
- Supports path-based: /vendors/wizamart/shop/* → wizamart
- Supports subdomain: wizamart.platform.com → wizamart
- Supports custom domain: customshop.com → customshop.com
- Modified dispatch() to handle shop API specially (no longer skips)
- Vendor context now injected into request.state.vendor for shop API calls
### Frontend Migration (Complete)
Updated all shop templates to use new API endpoints:
- app/templates/shop/account/login.html - Updated login endpoint
- app/templates/shop/account/register.html - Updated register endpoint
- app/templates/shop/product.html - Updated 4 API calls (products, cart)
- app/templates/shop/cart.html - Updated 3 API calls (get, update, delete)
- app/templates/shop/products.html - Activated product loading from API
**Total: 9 API endpoint migrations across 5 templates**
### Old Endpoint Cleanup (Complete)
Removed deprecated /api/v1/public/vendors/* shop endpoints:
- Deleted app/api/v1/public/vendors/auth.py
- Deleted app/api/v1/public/vendors/products.py
- Deleted app/api/v1/public/vendors/cart.py
- Deleted app/api/v1/public/vendors/orders.py
- Deleted app/api/v1/public/vendors/payments.py (empty)
- Deleted app/api/v1/public/vendors/search.py (empty)
- Deleted app/api/v1/public/vendors/shop.py (empty)
Updated app/api/v1/public/__init__.py to only include vendor lookup endpoints:
- GET /api/v1/public/vendors/by-code/{code}
- GET /api/v1/public/vendors/by-subdomain/{subdomain}
- GET /api/v1/public/vendors/{id}/info
**Result: Only 3 truly public endpoints remain**
### Error Page Improvements
Updated all shop error templates to use base_url:
- app/templates/shop/errors/*.html (10 files)
- Updated error_renderer.py to calculate base_url from vendor context
- Links now work correctly for path-based, subdomain, and custom domain access
### CMS Route Handler
Added catch-all CMS route to app/routes/vendor_pages.py:
- Handles /{vendor_code}/{slug} for content pages
- Uses content_page_service for two-tier lookup (vendor override → platform default)
### Template Architecture Fix
Updated app/templates/shop/base.html:
- Changed x-data to use {% block alpine_data %} for component override
- Allows pages to specify custom Alpine.js components
- Enables page-specific state while extending shared shopLayoutData()
### Documentation (Complete)
Created comprehensive documentation:
- docs/api/shop-api-reference.md - Complete API reference with examples
- docs/architecture/API_CONSOLIDATION_PROPOSAL.md - Analysis of 3 options
- docs/architecture/API_MIGRATION_STATUS.md - Migration tracking (100% complete)
- Updated docs/api/index.md - Added Shop API section
- Updated docs/frontend/shop/architecture.md - New API structure and component pattern
## Benefits Achieved
### Cleaner URLs (~40% shorter)
Before: /api/v1/public/vendors/{vendor_id}/products
After: /api/v1/shop/products
### Better Architecture
- Middleware-driven vendor context (no manual vendor_id passing)
- Proper separation of concerns (public vs shop vs vendor APIs)
- Consistent authentication pattern
- RESTful design
### Developer Experience
- No need to track vendor_id in frontend state
- Automatic vendor context from Referer header
- Simpler API calls
- Better documentation
## Testing
- Verified middleware extracts vendor from Referer correctly
- Tested all shop API endpoints with vendor context
- Confirmed products page loads and displays products
- Verified error pages show correct links
- No old API references remain in templates
Migration Status: ✅ 100% Complete (8/8 success criteria met)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
185 lines
4.8 KiB
Markdown
185 lines
4.8 KiB
Markdown
# API Overview
|
|
|
|
The Letzshop Import API provides comprehensive endpoints for managing products, shops, users, and marketplace imports. This section provides high-level guidance and concepts for working with our API.
|
|
|
|
## Interactive Documentation
|
|
|
|
For hands-on API exploration and testing, use our interactive documentation:
|
|
|
|
!!! tip "Live API Documentation"
|
|
- **[Swagger UI](http://localhost:8000/docs)** - Interactive API testing interface
|
|
- **[ReDoc](http://localhost:8000/redoc)** - Clean, readable API reference
|
|
- **[OpenAPI Spec](http://localhost:8000/openapi.json)** - Machine-readable API specification
|
|
|
|
## API Structure
|
|
|
|
### Base URL
|
|
```
|
|
Production: https://api.letzshop.com/api/v1
|
|
Development: http://localhost:8000/api/v1
|
|
```
|
|
|
|
### API Versioning
|
|
All API endpoints are versioned using URL path versioning:
|
|
- Current version: `v1`
|
|
- All endpoints are prefixed with `/api/v1/`
|
|
|
|
## Endpoint Categories
|
|
|
|
### Shop API (`/shop/`) - Customer-Facing
|
|
Multi-tenant shop endpoints with automatic vendor context from middleware:
|
|
- **Products**: Browse catalog, search, product details
|
|
- **Cart**: Shopping cart operations (session-based)
|
|
- **Orders**: Order placement and history (authenticated)
|
|
- **Authentication**: Customer login, registration, password reset
|
|
- **Content Pages**: CMS pages (about, FAQ, etc.)
|
|
|
|
**Note**: Vendor context automatically injected via `VendorContextMiddleware` using Referer header.
|
|
|
|
### Public API (`/public/`)
|
|
Public endpoints for vendor lookup (no authentication):
|
|
- **Vendor Lookup**: Get vendor by code, subdomain, or ID
|
|
- Returns public vendor information only
|
|
|
|
### Admin API (`/admin/`)
|
|
Admin management endpoints (requires admin authentication):
|
|
- User management (admin only)
|
|
- Vendor management
|
|
- System statistics
|
|
- Configuration management
|
|
- Domain management
|
|
|
|
### Vendor API (`/vendor/`)
|
|
Vendor dashboard endpoints (requires vendor authentication):
|
|
- Product management
|
|
- Order management
|
|
- Customer management
|
|
- Store settings
|
|
- Analytics and reporting
|
|
|
|
### Products (`/products/`)
|
|
- MarketplaceProduct CRUD operations
|
|
- MarketplaceProduct search and filtering
|
|
- Bulk operations
|
|
|
|
### Shops (`/shops/`)
|
|
- Shop management
|
|
- Shop-product associations
|
|
- Shop statistics
|
|
|
|
### Inventory (`/inventory/`)
|
|
- Inventory management
|
|
- Inventory movements
|
|
- Inventory reporting
|
|
|
|
### Marketplace (`/marketplace/`)
|
|
- Import job management
|
|
- CSV file processing
|
|
- Import status tracking
|
|
|
|
### Statistics (`/stats/`)
|
|
- System-wide statistics
|
|
- User activity metrics
|
|
- Import performance data
|
|
|
|
## Request/Response Format
|
|
|
|
### Content Type
|
|
All API endpoints use JSON for request and response bodies:
|
|
```
|
|
Content-Type: application/json
|
|
```
|
|
|
|
### Standard Response Format
|
|
```json
|
|
{
|
|
"data": {...}, // Main response data
|
|
"message": "Success", // Human-readable message
|
|
"status": 200 // HTTP status code
|
|
}
|
|
```
|
|
|
|
### Error Response Format
|
|
```json
|
|
{
|
|
"detail": "Error description",
|
|
"type": "validation_error",
|
|
"errors": [ // Field-specific errors (if applicable)
|
|
{
|
|
"field": "email",
|
|
"message": "Invalid email format"
|
|
}
|
|
]
|
|
}
|
|
```
|
|
|
|
## Common Patterns
|
|
|
|
### Pagination
|
|
Most list endpoints support pagination:
|
|
|
|
```bash
|
|
GET /api/v1/marketplace/product?skip=0&limit=20
|
|
```
|
|
|
|
Response includes pagination metadata:
|
|
```json
|
|
{
|
|
"items": [...],
|
|
"total": 150,
|
|
"skip": 0,
|
|
"limit": 20,
|
|
"has_next": true
|
|
}
|
|
```
|
|
|
|
### Filtering and Searching
|
|
Many endpoints support filtering and search:
|
|
|
|
```bash
|
|
GET /api/v1/marketplace/product?search=laptop&category=electronics&min_price=100
|
|
```
|
|
|
|
### Sorting
|
|
Use the `sort` parameter with field names:
|
|
|
|
```bash
|
|
GET /api/v1/marketplace/product?sort=name&order=desc
|
|
```
|
|
|
|
## Status Codes
|
|
|
|
| Code | Meaning | Description |
|
|
|------|---------|-------------|
|
|
| 200 | OK | Request successful |
|
|
| 201 | Created | Resource created successfully |
|
|
| 204 | No Content | Request successful, no content returned |
|
|
| 400 | Bad Request | Invalid request data |
|
|
| 401 | Unauthorized | Authentication required |
|
|
| 403 | Forbidden | Insufficient permissions |
|
|
| 404 | Not Found | Resource not found |
|
|
| 422 | Unprocessable Entity | Validation error |
|
|
| 429 | Too Many Requests | Rate limit exceeded |
|
|
| 500 | Internal Server Error | Server error |
|
|
|
|
## Rate Limiting
|
|
|
|
API endpoints are rate limited to ensure fair usage:
|
|
|
|
- **Default limit**: 100 requests per minute per IP
|
|
- **Authenticated users**: 1000 requests per minute
|
|
- **Admin users**: 5000 requests per minute
|
|
|
|
Rate limit headers are included in responses:
|
|
```
|
|
X-RateLimit-Limit: 100
|
|
X-RateLimit-Remaining: 95
|
|
X-RateLimit-Reset: 1640995200
|
|
```
|
|
|
|
## Next Steps
|
|
|
|
- **[Authentication Guide](authentication.md)** - Learn about API authentication
|
|
- **[Error Handling](error-handling.md)** - Understanding API errors
|
|
- **[Rate Limiting](rate-limiting.md)** - Rate limiting details
|
|
- **[Interactive Docs](http://localhost:8000/docs)** - Try the API live |