Owner: Engineering Team | Last Updated: 2026-01-30 | Status: Current
REST API design conventions observed in the Django backend. For the full backend overview, see Backend Overview.
/ (Django convention)/api/user/, /api/feature/history/)/api/feature/history/{id}/| Method | Usage |
|---|---|
| GET | Retrieve resources |
| POST | Create resources, perform actions |
| PATCH | Partial update |
| DELETE | Remove resources |
Authorization: Bearer <jwt>X-Walter-Internal-Key: <key> (server-to-server)?limit=20&offset=0{ results: [...], next: "url", count: N }application/json{ "detail": "message", "code": "error_code" }| Date | Author | Change |
|---|---|---|
| 2026-01-30 | Admin | Initial creation |
Prev: Backend - Database Schema | Up: WalterWrites