Changelog
2022-01-17
Flexpa Link (0.0.10) now supports onExit
and onLoad
callback functions passed to create
.
onExit
is called when the user exits the authorization flow without succesfully authorizing
onLoad
is called when Link is loaded and ready to be used
2022-01-05
We have released Flexpa Connections, an application that lets patients manage their health plan authorizations.
- Patients can log in with their health plan and view a history of applications they've connected through Flexpa Link
- Patients can disconnect apps they no longer want their health plans connected to and reconnect them anytime through Flexpa Link
- Check out the Flexpa Connections documentation for more information
2022-01-04
After user testing and customer feedback, we have removed all minimums from our Basic plan. This pure usage-based pricing should allow early testing and onboarding, aligning value with predictable cost. Check out additional details here.
2022-12-15
The introspect endpoint of the Flexpa API now returns additional metadata about the specific endpoint associated with the access token you are using. Read more about these details on the introspect section of the Flexpa API documentation.
2022-11-09
Flexpa Link (0.0.8) now supports the option to skip the health plan search / select step in our authorization flow.
This supports an improved UX flow in cases where a patient's health plan is known to the application implementing Flexpa Link prior to starting the authorization.
2022-10-31
Patient access tokens created with Flexpa Link now have support for a refresh mechanism. Refreshing a patient access token allows your application to make requests after the original one has expired.
- Where possible, Flexpa obtains an
offline_access
scope and exposes a refresh route
- Refreshing a patient access token will invalidate the previous patient access token and return a new one
Note that not all patient access tokens support refreshing. Major payer support includes Kaiser Permanente, Cigna, Humana, UnitedHealth, and Anthem.
2022-10-18
We are launching a small guide on basic data analysis with FHIR bundles you get from Flexpa API.
- This guide explains how to go from raw FHIR bundles from Flexpa API, and transform them into structured tables that conform to Tuva's data model
- We've co-developed a FHIR parser with Tuva that converts FHIR bundles into database-ready CSVs for structured analysis
2022-10-17
We are launching pagination support to simplify accessing FHIR Resource search results.
- Developers can pass the query parameter
_count
into search requests and use the returned link
object to access the paginated results
- More information about pagination is available on the API reference page
2022-10-07
We are launching the Flexpa Portal, a new way for developers to manage their Flexpa account.
- This new option allows for developers to create an account, generate API keys, and invite other members of their organization to collaborate.
- Our portal can be accessed here
2022-08-30
We are launching the ability to customize the appearance of Flexpa Link with the customLinkConfig
configuration object.
- This new configuration object provides a way to configure Flexpa Link to match implementers' UI/UX more closely
- Initially supporting four
brandColors
: red
, green
, blue
, and yellow
- Instructions on implementation available here
2022-08-03
We are launching the new patient access guide and FHIR Resource reference pages.
- The newly updated patient access guide provides a background on Patient Access APIs and the data they make available
- The FHIR Resource pages provide sample request and response data for FHIR Resources (ex. Coverage) that can be accessed using Flexpa API
2022-06-29
We are launching the Wildcard Parameters feature in Flexpa API. This allows you to reference real values provided by the Patient Access Token in each request.
The first parameter we are supporting is $PATIENT_ID
, allowing you to use the currently authorized patient_id
in each request without having to know what it is.
- Removes the
patient_id
as a field in the response of POST /link/exchange
- Updates FHIR Server to accept Wildcard Parameter,
$PATIENT_ID
Example requests:
GET /fhir/Patient/$PATIENT_ID -H "Authorization: $ACCESS_TOKEN"
GET /fhir/Coverage?patient=$PATIENT_ID&_count=5 -H "Authorization: $ACCESS_TOKEN"
GET /fhir/ExplanationOfBenefit?patient=$PATIENT_ID -H "Authorization: $ACCESS_TOKEN"
Note: Using the introspect endpoint and sending the actual patient_id
will also continue to work.
2022-06-22
We are launching the NodeJS-based Quickstart repository and accompanying guide.
- The Quickstart Github repository is a cloneable project to help you get started with Flexpa in just a few steps
- The Quickstart guide walks through how to build and run Flexpa's quickstart example
2022-06-15
We are launching Flexpa Link and Flexpa API, including our major feature release of self-service test mode API keys.
- Flexpa Link is a client-side component to help your users link health plan data sources
- Flexpa API is a unified HL7 FHIR API (HTTP + JSON) to access health plan, claims, and clinical data
Getting started: