EMR Integration

Introduction

Integrating GluVue with your EMR system allows seamless and automated handling of many glucose data points generated by continuous glucose monitors. This powerful integration simplifies the process, making it easy to manage and analyze weeks of glucose data collected every five minutes.

Epic logo Integration

For Epic users, integrating GluVue into your EMR system can be efficiently achieved through the Epic Showroom. Visit GluVue's Showroom page to explore the integration details and request access. When you're ready, you can submit a download request directly through the App Market to begin the integration process. Collaborate with your Epic Technical Coordinator (TC) throughout the process for any support and ensure a smooth setup, allowing GluVue to seamlessly manage and analyze extensive glucose data collected by CGMs.

POST Integration

For non-Epic customers, GluVue can be integrated into your EMR system using the POST method. This method allows you to seamlessly send glucose data from your EMR to GluVue for analysis and visualization. Collect the data as your EMR system allows, and then send it to GluVue as POST parameters for processing.

The URL to submit the POST request to is:

Parameters

start:
The start date of the data range. Accepted formats include:
  • MM/DD/YYYY (e.g., 07/13/2024) - US format
  • YY-MM-DD (e.g., 24-07-13) - Two-digit year format
  • YYYY-MM-DD (e.g., 2024-07-13) - ISO 8601 format
  • Unix epoch time prefixed with `@` (e.g., `@1626192873`)
end:
The end date of the data range. Similar formats as the start date are accepted.
data:
A JSON array containing glucose measurement objects. Each object must include:
data:
The glucose measurement value.
time:
The timestamp of the measurement. Accepted formats include:
  • MM/DD/YYYY HH:MM:SS
  • YY-MM-DD HH:MM:SS
  • YYYY-MM-DD HH:MM:SS
  • Unix epoch time prefixed with `@`

Data Handling

The start time begins at midnight (00:00:00) on the start date and ends at 23:59:59 on the end date. Invalid date formats for start or end dates will generate an error. Measurements containing invalid timestamps will be ignored. GluVue requires a secure HTTPS connection.

Try it out