Every records method needs two IDs:
bid — your business ID, provided by Eka Care when your account is set up.
patientId — the OID of the logged-in user whose records you are working with.
List Documents
listDocuments is cache-first: it gives you local data instantly, then updates it from the server.
What happens when you call it:
- Local read — the SDK reads the records already stored in IndexedDB.
- Instant callback — if you passed
onStale, those local records are handed to you right away, so your UI can render without waiting for the network.
- Server fetch — the SDK then asks the server only for records that changed since the last sync (not the whole list again) and saves them into IndexedDB. Anyone subscribed to
documents:changed gets notified.
- Final result — the
await completes with the full, up-to-date list. If there is no internet, you still get the local list.
If you don’t pass onStale, there is no early delivery — the call waits for
the server fetch to complete and then returns the complete list in one go.
ListDocumentsFilter fields:
| Field | Type | Description |
|---|
documentType | string | Filter by document type code ('lr', 'ps' etc.) — client-side |
caseId | string | Filter to records belonging to a case — client-side |
fileType | string | Filter by file type ('IMG', 'PDF', 'HTML') — client-side |
updatedAfter | number | Only records updated after this epoch (seconds) — sent to the server |
Group Documents
groupDocuments organises the document list into sections, ready to render as a sectioned UI (like a list with headers). Instead of one flat array, you get an array of groups — each with a key, a display label, and the records that fall under it.
You can group two ways:
- By document type — one group per type code: all lab reports together, all prescriptions together, and so on.
- By date — one group per day, month, or year (e.g. “May 2025”), based on either the document date or the upload date.
Reads from the local DB — no network call.
GroupDocumentsOptions:
| Field | Type | Default | Description |
|---|
groupBy | GroupBy | required | GroupBy.DocumentType or GroupBy.Date |
dateFormat | DateGroupFormat | Month | Day | Month | Year — granularity when grouping by date |
dateField | DateField | DocumentDate | DocumentDate | CreatedAt — which date to group by |
sortBy | SortBy | UpdatedAt | UpdatedAt | CreatedAt — sort within each group |
filter | ListDocumentsFilter | — | Same filters as listDocuments |
Upload a Document
Offline: record + blob are saved to IndexedDB as upload_failure and
auto-retried on the next sdk.sync().
File constraints:
| Limit |
|---|
| Max batch items | 5 |
| Max files per batch | 10 |
| Image max | 10 MB |
| PDF max | 25 MB |
| Supported types | image/jpeg image/jpg image/png application/pdf |
Download a Document
Cache-first — returns blobs from IndexedDB if previously fetched, otherwise downloads from S3 and caches.
Get Smart Report
Cache-first — returns the AI-extracted smart report from IndexedDB if available, otherwise fetches from the API.
Describe a Document
Returns the full details of a document. Cache-first — served from IndexedDB if the document’s files were previously fetched, otherwise fetched from the API.
DescribeDocumentResponse fields (all optional):
| Field | Type | Description |
|---|
files | DocumentFile[] | File attachments — each has asset_url (signed S3 URL) and file_type (DocumentFileType) |
smart_report | SmartReport | AI-extracted fields (verified / unverified) |
tags | string[] | User-supplied tags |
document_type | string | Document type code (e.g. 'lr', 'ps') |
document_date_epoch | number | Document date as Unix epoch (seconds) |
source | string | Origin of the document |
Edit a Document
Local-first — patches the DB immediately, syncs to the server in the background.
Delete a Document
Soft-deletes locally (hidden immediately), hard-deletes after the server confirms. Also removes the document from any linked cases in the local DB.