Files
Scaffolder a4696e1255
All checks were successful
Build and Publish TechDocs / build-and-publish (push) Successful in 1m17s
initial commit
Change-Id: Id1f6c65712d03407d819e29d1aad4c02771f7870
2026-05-11 10:42:38 +00:00

21 lines
640 B
Markdown

# API Reference
Base URL: `https://sonar-test-nest.kyndemo.live`
## Items `/api/items`
| Method | Path | Body | Response |
|--------|------|------|----------|
| GET | `/api/items` | — | Array of items |
| POST | `/api/items` | `{"name":"...","description":"..."}` | Created item (201) |
| GET | `/api/items/{id}` | — | Item or 404 |
| PUT | `/api/items/{id}` | `{"name":"...","description":"..."}` | Updated item |
| DELETE | `/api/items/{id}` | — | `{"deleted":id}` |
## Observability
| Path | Description |
|------|-------------|
| `/health` | Health check — `{"status":"UP"}` |
| `/metrics` | Prometheus exposition format |