Browse VFS
Lists the contents of a VFS path. Returns directory children with name, type, and preview, or file content when the path resolves to a file. Paths are relative to the patient root (e.g. /conditions/active); the patient is identified by the patientId route param. Defaults to the root when path is omitted.
Authorization
Bearer readEach operation lists the OAuth scope (read or write) it requires.
In: header
Scope: read
Path Parameters
ID of the patient
^[A-Za-z0-9._-]{1,128}$Query Parameters
VFS path to browse, relative to the patient root (e.g. /conditions/active). Defaults to the root when omitted.
""Response Body
application/json
application/json
curl -X GET "https://example.com/v1/patients/string/vfs"{ "path": "string", "type": "directory", "children": [ { "name": "string", "type": "directory", "preview": "string" } ], "content": "string"}List session memories GET
Returns the memories extracted from this session, paginated. Sorted by `createdAt` descending (newest first) by default.
Read VFS path GET
Returns the content of a VFS file at the given path. Three output formats are supported: `narrative` (full Markdown, default), `compact` (condensed Markdown), and `structured` (machine-readable JSON). Use `token_budget` to cap approximate output length in tokens.