We have a fully integrated Sandbox for testing with Vena. All supported workflows are functional and reflect real-world behavior, allowing you to test complete workflows from patient retrieval through appointment management, medical notes, and document creation.
This is the typical entry point to the Leyr API. The care unit ID returned here is required for all subsequent API calls.
Call GET /care-units to discover available care units in your Vena system. Use any id from the response in the path parameter for other endpoints.
Retrieve patient information for use in appointment management and document workflows.
Get Patient: Use GET /patients/{patient_id} with any patient ID from patients existing in your system.
Retrieve existing appointments from your Vena system.
Get Appointments: Call GET /appointments to retrieve existing appointments. You can filter by patient, date range, or leave parameters empty to see all appointments.
Create clinical notes associated with patients, with retrieval functionality in development.
Create Medical Note: Use POST /medical-notes to add new clinical notes for a patient.
Create and upload documents for patient records, with retrieval functionality not yet available.
Create Document: Use POST /documents to upload or create new documents for patients.
Happy coding! 🙂