๐ Fax
Send + receive fax for healthcare workflows where itโs still required (referrals, prior auth, records requests with non-digital practices).
๐ค Send + Receive
- Send โ
POST /api/v1/fax/sendwith PDF attachment + recipient fax number; Synalux delivers via the configured fax provider. - Receive โ inbound faxes arrive in the workspace inbox with OCRโd text + PDF attached; auto-routed to the patient if the cover sheet matches.
- Delivery tracking โ sent / queued / delivered / failed status updates with retry on transient failures.
- Honest mock-mode โ when no real fax provider is configured, the API returns a clear โmock-modeโ response so test environments donโt silently no-op.

โ๏ธ Validation
- E.164 fax-number normalization โ rejects malformed inputs at the API boundary.
- PDF attachment validation โ file size, MIME type, page count limits.
- Per-workspace recipient allowlist option for high-security environments.
๐๏ธ Architecture
โ ๏ธ API routes are planned but not yet deployed. The fax service library
(`lib/fax-service.ts`) is implemented; API surface ships in next release.
POST /api/v1/fax/send Outbound (PDF + recipient + cover sheet) [planned]
GET /api/v1/fax/inbox Inbound queue (workspace-scoped) [planned]
GET /api/v1/fax/:id/status Delivery status [planned]
GET /api/v1/fax/:id/pdf Signed download URL for received PDF [planned]๐ณ Plans
Available on Advanced+ as part of the practice-administration tier.
Provider integration: Phaxio / Documo / SRFax (configurable per workspace).