Submitting Measurements to Inform Connect
The measurements endpoint provides a list of body measurements or vital signs taken for a user. This endpoint is commonly used for measures like body temperature, blood pressure, blood glucose, respiratory metrics, heart rate, etc.
measurements is designed to record vital signs, body measures, health measures, and other information that is captured as a point-in-time measurement.
A user can have many
measurementsper Data Source for a given day. Each submitted event represents a completed measure.
For example, a thermometer which records body temperature could record an individual measurement for each reading the device captures. A blood pressure cuff which records diastolic, systolic, and pulse could record measurements for each blood pressure reading it captures.
Sample Measurements POST
{
"log_id": "validic-test-measurement-record-1",
"start_time": "2025-02-24T12:30:09Z",
"end_time": "2025-02-24T12:30:09Z",
"utc_offset": -72000,
"offset_origin": "source",
"metrics": [
{
"type": "diastolic",
"origin": "device",
"unit": "mmHg",
"value": 80.0
},
{
"type": "systolic",
"origin": "device",
"unit": "mmHg",
"value": 110.0
},
{
"type": "pulse",
"origin": "device",
"unit": "bpm",
"value": 90.0
}
],
"source": {
"type": "validic_connect_test",
"device": {
"id": null,
"model": "Validic Upper Arm Blood Pressure Monitor",
"manufacturer": "Validic Inc."
}
},
"type": "measurement",
"version": "1.0"
}{
"log_id": "validic-test-measurement-record-2",
"start_time": "2025-02-24T15:30:09Z",
"end_time": "2025-02-24T15:30:09Z",
"utc_offset": -72000,
"offset_origin": "source",
"metrics": [
{
"type": "blood_glucose",
"origin": "device",
"unit": "mg/dL",
"value": 90.0
}
],
"user_notes": [
{
"type": "message",
"value": "Reading taken Before Lunch"
},
{
"type": "relationship_to_meal",
"value": "before"
}
],
"source": {
"type": "validic_connect_test",
"device": {
"id": null,
"model": "Validic Upper Arm Blood Pressure Monitor",
"manufacturer": "Validic Inc."
}
},
"type": "measurement",
"version": "1.0"
}Updated about 17 hours ago
