Skip to main content

Patients taking control of their medical records

As an Emergency Medicine physician in the year 2015, it is really astounding to think that we landed a man on the moon more than 40 years ago, yet I have patients walking in the door who had tests done at a facility across the street yesterday and I can't access those records. Thankfully some states have taken this situation into their own hands and developed systems for sharing medical records, such as the CRISP system in Maryland. Alas, most states have not yet built health information exchanges, and even those that have (like Maryland) don't necessarily have a patient portal.

There are many different models for how medical records should be stored and shared in the future, and I'm not sure which model will win out in the end. What seems most compelling is for records to revolve around the patient (as opposed to the hospital), and two products out there that do this well (to my knowledge) are: PicnicHealth and Gliimpse. Both PicnicHealth and Glimpse will help retrieve, organize and store patients' data, but Gliimpse is free and Picnic is not. As compelling as these services are, I have yet to experience a single patient coming in to the ER and saying, "Doc, you can find my records by going to website x...."




How do you get people to take the time to onboard onto this sort of service? I think one great option is to onboard patients while they are in the ER. Almost every ER visit involves at least an hour of dead time, waiting for some test or intervention, and it just happens that their health happens to be a critical issue at that time (that's why they're in the ER). It's a captive audience; take advantage of it. Hand the patient an iPad and a brochure and tell them to sign up!

I think there would be many Emergency Medicine physicians and groups that would support this sort of initiative.



Comments

Popular posts from this blog

Dr. Alex Mohseni invited to speak at Brault’s Healthcare Leadership Forum about the future of Emergency Medicine services and how ED groups can adapt using telemedicine.

  Dr. Mohseni presented on the topic of how Emergency Medicine groups could expand their scope of practice to the virtual space to and how to do so in a financially viable way.

From Stethoscope to Strategy: Why I Built ClinX Academy for Physicians Ready to Lead

“I love medicine—but I don’t love the hamster wheel.” That sentence kept echoing in my head during 3 a.m. shifts and budget meetings alike. If you’re a physician feeling the same tug between clinical passion and systemic frustration, this post is for you. The Problem: Brilliant Clinicians, Limited Business Training Physicians command >80 % of U.S. healthcare spend yet hold <5 % of C-suite seats. Traditional MBAs cost $150K+, 2 years, and countless missed family dinners. Weekend “crash courses” often lack depth, CME credit, or a meaningful network. Burnout rates hover around 50 % —and much of it stems from feeling powerless in operational decisions. Keywords: physician leadership gap, physician executive training, clinician burnout, healthcare MBA alternative, non-clinical career paths My A-Ha Moment in the Hospital Corridor I was serving as a National Medical Director when a perfectly capable colleague admitted, “I have no idea how capitation works—I just sign ...

How to connect openai to zapier to twilio so that you can interface with GPT3 via SMS

 I created an SMS interface to openAI's gpt3 API so that I can send an SMS prompt to openai and get an SMS response. Result looks like this: There may be better/easier ways of doing this, but this is how I figured it out. I'm assuming some degree of familiarity w/ Zapier here: 1. Buy a phone number in Twilio to use for this. This only costs $1/mo 2. In Zapier, create a new zap where the trigger is "Webhooks by Zapier" (Premium option). Choose your event as "Catch Hook". This will generate a webhook URL that is custom for this workflow. We are doing this because when you send the SMS to the Twilio phone number, you want it to **instantly** trigger the zapier workflow and not wait the 5-15 min it takes for Twilio to trigger on its own, so for that you need the webhook: 3. Copy the webhook URL from zapier and paste it into Twilio in the "A Messages Comes In" webhook section for that phone number 4. You will then need to send a test message so that Zap...