Files
michaelschiemer/backups/docs-backup-20250731125004/api.md
Michael Schiemer 55a330b223 Enable Discovery debug logging for production troubleshooting
- Add DISCOVERY_LOG_LEVEL=debug
- Add DISCOVERY_SHOW_PROGRESS=true
- Temporary changes for debugging InitializerProcessor fixes on production
2025-08-11 20:13:26 +02:00

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
---