docs: surface SP9-SP13 in README + endpoint reference
The README only documented up to SP8 even though SP9-SP13 (multi-payer + multi-NPI + SFTP stub, 277CA + Payer-Rejected lane, tamper-evident audit log, optional SQLCipher encryption, paramiko SFTP wire-up) are all merged into main. This brings the README back in line with the codebase: - Inbox section: bump lane count from four to five, add the payer_rejected lane (and its monotonic stamping contract). - Add a Multi-Payer, Multi-NPI & Clearhouse section (SP9): the providers / payers / payer_configs / clearhouse tables, the config/payers.yaml loader, the new config + clearhouse endpoints. - Add a 277CA Claim Acknowledgment section (SP10): parse-277ca + 277ca-acks, the Payer-Rejected stamp semantics. - Add a Tamper-Evident Audit Log section (SP11): hash-chained audit_log, the verify endpoint. - Add an Encryption at Rest section (SP12): Keychain-stored SQLCipher key, transparent fallback to plain SQLite. - Add an SFTP Wire-Up (paramiko) section (SP13): the production submit path and the file-naming template. - Persistence section: link to the Encryption at Rest section. - Roadmap: bump shipped sub-projects to 2-13, add a one-line pointer to the completeness review for the honest industry-gap accounting. - Project layout: add api_helpers, db_crypto, audit_log, the new inbox_* modules, providers/payers/secrets, the new test files, and the config/ + docs/reviews/ + docs/superpowers/specs/ tree. - backend/README: refresh the endpoint table to include the parse-999/parse-ta1/parse-277ca/eligibility/clearhouse/admin surface; point at the root README for the full route list.
This commit is contained in:
+19
-5
@@ -78,11 +78,25 @@ python -m cyclone serve
|
||||
|
||||
### Endpoints
|
||||
|
||||
| Method | Path | Purpose |
|
||||
| ------ | ---------------- | -------------------------------------------------- |
|
||||
| GET | `/api/health` | Liveness probe: `{"status": "ok", "version": ...}` |
|
||||
| POST | `/api/parse-837` | Upload an X12 837P file, get parsed claims back |
|
||||
| POST | `/api/parse-835` | Upload an X12 835 ERA file, get parsed payouts back |
|
||||
| Method | Path | Purpose |
|
||||
| ------ | --------------------- | ------------------------------------------------------------------ |
|
||||
| GET | `/api/health` | Liveness probe: `{"status": "ok", "version": ...}` |
|
||||
| POST | `/api/parse-837` | Upload an X12 837P file, get parsed claims back |
|
||||
| POST | `/api/parse-835` | Upload an X12 835 ERA file, get parsed payouts back |
|
||||
| POST | `/api/parse-999` | Upload an inbound 999 ACK and persist it |
|
||||
| POST | `/api/parse-ta1` | Upload an inbound TA1 envelope ACK and persist it |
|
||||
| POST | `/api/parse-277ca` | Upload a 277CA claim acknowledgment and stamp payer_rejected claims |
|
||||
| POST | `/api/eligibility/request` | Build a 270 from JSON (subscriber / provider / payer) |
|
||||
| POST | `/api/eligibility/parse-271` | Ingest a 271 and return structured `coverage_benefits` |
|
||||
| GET | `/api/clearhouse` | The `clearhouse` singleton (SP9) |
|
||||
| POST | `/api/clearhouse/submit` | Push a batch of generated 837 files via SFTP (SP9 stub, SP13 real) |
|
||||
| POST | `/api/admin/reload-config` | Re-read `config/payers.yaml` and refresh the in-process cache |
|
||||
| GET | `/api/admin/audit-log` | Paginated tamper-evident audit log (SP11) |
|
||||
| GET | `/api/admin/audit-log/verify` | Walk the audit_log hash chain (SP11) |
|
||||
|
||||
The full surface — claim / remittance / batch / inbox / stream
|
||||
endpoints, config lookups, and the 270/271 builder — is enumerated in
|
||||
the root [README](../README.md#multi-payer-multi-npi--clearhouse).
|
||||
|
||||
`POST /api/parse-837` accepts `multipart/form-data` with a single `file`
|
||||
field. Optional query parameters:
|
||||
|
||||
Reference in New Issue
Block a user