Test Results Webhook
Test result readings from Athelas devices can be forwarded to you, the client.
Test Results Forwarded to You
We provide a test results webhook for our enterprise clients that make it simple and easy to know when a test result reading has been registered.
First, get set up with us.
In order to receive test results from Athelas, you will first need to provide us with a URL where we can forward test results. Please contact
aki@athelas.com
and provide us with the URL. In turn, we will provide you with a bearer token that you can use to verify all future test results forwarded to you from Athelas.
Aside from the exact data of each reading, we provide additional information such as percentage change and exact time in ISO format, to make it easier for our clients to derive insight from test data.
You will receive test results from blood pressure/heart rate devices, weight scales, and blood glucometers. Below, you will find the exact formats in which you can expect data from Athelas.
Blood Pressure Cuff + Heart Rate Test Result
The blood pressure cuffs that we provide also serve as heart rate sensors. The test results will be bundled together into one report, detailing systolic and diastolic blood pressure along with heart rate in beats per minute.
{
"patient_id": 1234567,
"patient": "Test Tester",
"errors": "None",
"percentile_change": 0.6,
"prescriber_full_name": "Elizabeth Blackwell",
"test_time": "2022-01-08T02:17:09.075230",
"site_ids": [153],
"blood_pressure_test_id": 54550,
"test_type": "BLOOD_PRESSURE/HEART_RATE",
"systolic": 132,
"diastolic": 65,
"bpm": 15
}
Weight Scale Test Result
Athelas weight scales will report their measurements to you in pounds (lbs).
{
"patient_id": 1234567,
"patient": "Test Tester",
"errors": "None",
"percentile_change": 0.6,
"prescriber_full_name": "Elizabeth Blackwell",
"test_time": "2022-01-08T02:17:09.075230",
"site_ids": [153],
"weight_test_id": 12351,
"test_type": "WEIGHT",
"weight": 168
}
Glucose Test Result
Athelas glucometers will report their measurements to you with glucose values in mmol/L.
{
"patient_id": 1234567,
"patient": "Test Tester",
"errors": "None",
"percentile_change": 0.6,
"prescriber_full_name": "Elizabeth Blackwell",
"test_time": "2022-01-08T02:17:09.075230",
"site_ids": [153],
"glucose_test_id": 34535,
"test_type": "GLUCOSE",
"glucose": 40
}
Updated about 3 years ago