Get Sessions
Sessions
Get Sessions
List past sessions for the authenticated user, newest first. Cancelled and archived sessions are excluded. Pass count to cap the number of sessions returned. Pass oid to fetch sessions of a specific patient instead (up to 10 by default — override with count).
GET
Get Sessions
List past sessions for the authenticated user, newest first — useful for building a session-history screen. Cancelled and archived sessions are excluded.
Two ways to use it:
- User history (default) — all sessions created by the calling user. Pass
countto cap how many are returned. - Patient history — pass
?oid=<patient_oid>to fetch sessions of a specific patient (up to 10 by default — override withcount).
txn_id is the session ID — use it with Get Session, Get Session Audio or List Session Documents.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Number of latest sessions to fetch.
Required range:
x >= 1Patient OID. When provided, returns that patient's sessions (default 10) instead of the user's full history.

