Files
work-queue-api/docs/api-reference.md
Steve W fbc88bb62b
Some checks failed
ci / build-test-push (push) Failing after 1m42s
feat: rebuild work queue api with fastapi and postgres
2026-04-11 19:24:52 +00:00

21 lines
361 B
Markdown

# API Reference
## Projects
- `POST /projects`
- `GET /projects`
- `GET /projects/{id}`
- `PATCH /projects/{id}`
## Work
- `POST /work`
- `GET /work`
- `GET /work/{id}`
- `PATCH /work/{id}`
- `DELETE /work/{id}`
## Monitoring
- `GET /work?status=in_progress`
- `GET /work?status=blocked`
- `GET /work?status=failed`
- `GET /work?status=completed&since=<ts>`