Files
Scaffolder e6c2ca14c8
All checks were successful
Build and Publish TechDocs / build-and-publish (push) Successful in 1m6s
initial commit
Change-Id: Iefd592a790207672e3876bb0ee5250f969b75b8a
2026-05-08 13:45:19 +00:00

21 lines
649 B
Markdown

# API Reference
Base URL: `https://demo-crucible-1.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 |
|------|-------------|
| `/actuator/health` | Health check — `{"status":"UP"}` |
| `/metrics` | Prometheus exposition format |