How to Build a HIPAA-Compliant IoMT Data Pipeline: From Device to EHR

In this guide, you’ll learn:
- What a compliant IoMT data pipeline actually looks like, layer by layer
- Where HIPAA's technical safeguards apply between the device and the EHR
- How to map device data into FHIR without it breaking under real patient volume
- The five pipeline gaps that fail security reviews and stall EHR integration
Connecting a single IoMT device to a single hospital system sounds like a weekend project. Building a pipeline that holds up across hundreds of devices, multiple hospital partners, and an OCR audit is a different problem altogether.
The stakes are rising for everyone building in this space.
A typical U.S. hospital now runs 10 to 15 connected medical devices per bed, and an independent Claroty study found that 99% of hospitals and health delivery organizations manage at least one IoMT device with a known exploited vulnerability.
The average healthcare data breach now costs USD 10.22 million in the United States, and HHS has proposed updates to the HIPAA Security Rule that would make encryption of ePHI at rest and in transit, along with multi factor authentication, mandatory rather than optional, with limited exceptions.
That rule is still pending final approval as of mid 2026, but the direction is clear.
For scaleup health IT teams, this means every new device integration is a new attack surface to defend. For device manufacturers and CRO teams, it means the pipeline itself can become a regulatory liability if it's not built correctly from day one.
Let's know the exact pipelines you need to keep a close watch on.
5 Major Layers of a Compliant IoMT Pipeline
A useful way to think about this is as five distinct layers, each with its own job and its own compliance requirement.
| Layer | What it does | Key compliance requirement |
|---|---|---|
| Device | Captures the raw reading (vitals, glucose, ECG, etc.) | Device identity and authentication |
| Edge or gateway | Collects and forwards data from one or more devices | Local encryption, network segmentation |
| Transport and ingestion | Moves data from the field into your cloud environment | Encryption in transit, API authentication |
| Processing and storage | Validates, aggregates, and stores the data | Encryption at rest, access controls, audit logging |
| FHIR and EHR layer | Maps data into clinical resources and pushes it to the hospital system | FHIR resource mapping, SMART on FHIR auth, BAA coverage |
Most pipeline failures we see don't happen at the device. They happen in the handoff between layers, especially between ingestion and storage, where teams assume "it's already encrypted upstream" and skip a step.
Read More: Epic EHR Integration for Startups: Timeline, Cost, and What Actually Breaks
Where HIPAA's Technical Safeguards Actually Apply
The HIPAA Security Rule doesn't talk about "pipelines." It talks about safeguards. Here's how those safeguards map onto the layers above.
| HIPAA safeguard | Applies at | What it means in practice |
|---|---|---|
| Access control | Storage and EHR layer | Role based access, unique user IDs, automatic logoff |
| Audit controls | Storage layer | Logged record of who accessed what data and when |
| Encryption in transit | Transport and ingestion layer | TLS 1.2 or higher for every API call carrying ePHI |
| Encryption at rest | Storage layer | Encrypted databases and backups, not just encrypted transfer |
| Integrity controls | Processing layer | Proof that data wasn't altered between capture and storage |
| Transmission security | Edge to cloud handoff | Secure channel even for low power or constrained devices |
The proposed 2025 to 2026 update to the Security Rule would also require vulnerability scans every six months and penetration testing annually, plus a 24 hour notification window for changes in workforce access. Building these checks into your pipeline now, rather than after the rule finalizes, puts you ahead rather than scrambling.
Mapping Device Data Into FHIR
Once data clears the security layer, it still has to land somewhere clinicians can use it. This is where most teams discover that wearable and IoMT data doesn't behave like a standard lab value.
A few things to plan for:
- Device resource: identifies the device, manufacturer, and software version
- Observation resource: carries the actual reading, but continuous data usually needs to be aggregated into time windows before it's sent, not streamed reading by reading
- DeviceMetric resource: defines what the device measures and at what precision
Sending raw, unaggregated readings straight into FHIR works fine in a demo and falls over once you're handling real patient volume across multiple devices. Most teams solve this by aggregating at the processing layer and keeping raw data in a separate time series store for audit purposes.
If your team hasn't mapped this out yet, with FHIR R4 integration you can get a clear resource mapping in depth, and see through the authentication layer that sits between your pipeline and the hospital's EHR.
Getting Data Into Epic, Cerner, and Athena
This is usually where scaleup teams lose the most time, since each EHR vendor has its own sandbox process and its own quirks.
| EHR | Integration path | Typical sandbox approval time | Common point of failure |
|---|---|---|---|
| Epic | App Orchard, FHIR R4 APIs | 4 to 8 weeks | Underestimating Epic's app review cycle |
| Cerner (Oracle Health) | Cerner Open Developer Experience | 2 to 4 weeks | Inconsistent FHIR resource support across hospital instances |
| AthenaHealth | Athena Marketplace APIs | 3 to 6 weeks | Limited support for continuous device data resources |
Business Associate Agreements: Layer Teams Forget
If your pipeline uses a third party gateway, an aggregator, or a cloud vendor at any point, that vendor needs to be covered under a Business Associate Agreement (BAA). This is one of the most common gaps we find during audits, especially when teams add a new vendor mid project and forget to update their BAA coverage.
The proposed Security Rule update goes further, requiring business associates to directly verify their compliance with safeguards and contingency plans within 24 hours of activation. If you're still building your BAA program, make sure to check out a detailed BAA programme guide that walks through the major mistakes that most often trigger OCR enforcement.
Beyond HIPAA: When Other Frameworks Also Apply
Most pipelines built for the US market eventually need to handle data from other regions too, especially as CROs run global trials and scaleups expand into the UK or GCC.
- GDPR applies if your pipeline touches EU patient or partner data, even if your main operations are US based
- NABIDH and similar GCC frameworks apply if you're handling data from UAE or Saudi hospital partners
- ISO 13485 matters if you're a device manufacturer, regardless of which country you're selling into
You can take the help of a good GDPR for HealthTech insight that covers what your architecture needs to handle if EU data passes through your pipeline at any point.
Read More: GDPR for HealthTech in 2026: What Your Architecture Must Handle
5 Major Pipeline Mistakes That Fail Security Review
- Assuming "encrypted upstream" covers the whole pipeline. Encryption at one layer doesn't guarantee encryption at the next.
- Adding a new vendor without updating BAA coverage. This is the single most common gap found in audits.
- Streaming raw device readings straight into FHIR. Works in testing, fails under real patient volume.
- Treating audit logging as a "nice to have." It's a required safeguard, not an optional feature.
- Building for one hospital's EHR configuration. What works at one Epic deployment may not transfer to the next.
A Pre-Build Checklist
IoMT Pipeline Pre-Build Compliance
Map your pipeline into the five layers (device, edge, transport, storage, FHIR/EHR) before writing integration code
Confirm encryption is applied at every layer, not just assumed from the layer before
Review BAA coverage for every vendor touching ePHI, including new ones added mid project
Plan FHIR resource mapping with aggregation built in for continuous data streams
Start EHR sandbox applications early, since approval timelines vary widely by vendor
Check whether GDPR, NABIDH, or other regional frameworks apply based on where your data and partners sit
Conclusion
A HIPAA compliant IoMT pipeline isn't one integration. It's five layers working together, each with its own safeguards, and most failures happen in the handoffs between them rather than at the device itself. Scaleup health IT teams and device manufacturers face the same underlying challenge from different angles: proving to hospital partners and regulators that data moves from device to EHR without creating a liability along the way.
The teams that map encryption, access control, and BAA coverage to every layer, and that plan FHIR mapping before they hit production volume, move through security reviews and EHR sandboxes far faster than the teams that patch these gaps after an audit flags them. With the HIPAA Security Rule update on the horizon, building this discipline in now puts you ahead rather than catching up later.
Frequently Asked Questions
Can Your IoMT Pipeline Pass a Hospital Security Review?
Find out with the help of our experts before the security team flags your IoMT products.