- Add DISCOVERY_LOG_LEVEL=debug - Add DISCOVERY_SHOW_PROGRESS=true - Temporary changes for debugging InitializerProcessor fixes on production
41 lines
722 B
Markdown
41 lines
722 B
Markdown
# Michael Schiemer API
|
|
|
|
API documentation for Michael Schiemer's custom PHP framework
|
|
|
|
**Version:** 1.0.0
|
|
|
|
## Endpoints
|
|
|
|
### GET /api/users
|
|
|
|
List all users
|
|
|
|
Retrieve a paginated list of all users in the system
|
|
|
|
**Parameters:**
|
|
|
|
- `page` (query) - Page number for pagination (optional)
|
|
- `limit` (query) - Number of items per page (optional)
|
|
- `search` (query) - Search term to filter users (optional)
|
|
|
|
**Responses:**
|
|
|
|
- `200` - List of users retrieved successfully
|
|
- `401` - Unauthorized - Invalid or missing authentication token
|
|
|
|
---
|
|
|
|
### POST /kontakt
|
|
|
|
Submit contact form
|
|
|
|
Submit a contact form message
|
|
|
|
**Responses:**
|
|
|
|
- `200` - Contact form submitted successfully
|
|
- `400` - Validation error - Invalid form data
|
|
|
|
---
|
|
|