Get supportRequest a Demo
  • Get Started
    • Welcome
  • Guides
    • Authentication
    • Patient Management
    • Order Management
    • Device Management
    • Webhook Management
  • Webhooks
  • API Reference
  • Resources
    • OpenAPI Spec
    • Mobile SDK
LogoLogo
Get supportRequest a Demo
API ReferenceReadings Blood Glucose

Fetch Blood Glucose Reading

GET
/api/v3/blood-glucose-reading/:readingId
GET
/api/v3/blood-glucose-reading/:readingId
1curl https://app.impiloplatform.com/api/v3/blood-glucose-reading/42 \
2 -H "Impilo-API-Key: <Impilo-API-Key>"
Try it
200example
1{
2 "readingTimestamp": "2024-07-04T00:00:00Z",
3 "afterMeal": false,
4 "beforeMeal": false,
5 "device": {
6 "currentPatient": {
7 "firstName": "John",
8 "lastName": "Doe",
9 "address": {
10 "city": "Philadelphia",
11 "country": "USA",
12 "lineOne": "1234 Market Street",
13 "state": "PA",
14 "zipCode": "19137",
15 "lineTwo": "Suite 110"
16 },
17 "dateOfBirth": "1987-09-13",
18 "email": "email@example.com",
19 "externalIdentifier": "external-identifier-123",
20 "id": 456,
21 "phoneNumber": "111-222-3333",
22 "sex": "unknown"
23 },
24 "currentStatus": "withPatient",
25 "deviceEvents": [],
26 "deviceIdentifiers": [
27 {
28 "type": "imei",
29 "value": "354833969951611"
30 },
31 {
32 "type": "serial",
33 "value": "A44-A0623930"
34 },
35 {
36 "type": "macAddress",
37 "value": "f51da43314fc"
38 }
39 ],
40 "disabledReadings": false,
41 "id": 599,
42 "item": {
43 "id": 791,
44 "manufacturer": {
45 "id": 2,
46 "name": "Custom Manufacturer"
47 },
48 "model": "iBloodPressureMonitor123",
49 "name": "Blood Pressure Monitor",
50 "sku": "0000001"
51 }
52 },
53 "glucose": 88,
54 "glucoseUnit": "mgdl",
55 "id": 42,
56 "item": {
57 "id": 791,
58 "manufacturer": {
59 "id": 2,
60 "name": "Custom Manufacturer"
61 },
62 "model": "iBloodPressureMonitor123",
63 "name": "Blood Pressure Monitor",
64 "sku": "0000001"
65 },
66 "manual": false,
67 "patient": {
68 "firstName": "John",
69 "lastName": "Doe",
70 "address": {
71 "city": "Philadelphia",
72 "country": "USA",
73 "lineOne": "1234 Market Street",
74 "state": "PA",
75 "zipCode": "19137",
76 "lineTwo": "Suite 110"
77 },
78 "dateOfBirth": "1987-09-13",
79 "email": "email@example.com",
80 "externalIdentifier": "external-identifier-123",
81 "id": 456,
82 "phoneNumber": "111-222-3333",
83 "sex": "unknown"
84 }
85}
This endpoint returns a specific blood glucose reading based on the reading identifier provided in the path.
Was this page helpful?
Previous

List Blood Glucose Readings

Next
Built with
List Blood Glucose Readings
This endpoint returns a specific blood glucose reading based on the reading identifier provided in the path.

Authentication

Impilo-API-Keystring
API Key authentication via header

Path parameters

readingIdlongRequired

Response

OK
readingTimestampstringformat: "date-time"
The UTC timestamp at which the reading was taken.
afterMealboolean or null
True if the reading was taken after a meal, false otherwise.
beforeMealboolean or null
True if the reading was taken before a meal, false otherwise.
deviceobject or null
The device used to take the reading.
deviceTimeZoneOffsetinteger or null
The offset of the device's timezone from UTC in seconds. Null if unavailable.
glucoseinteger or null
The blood glucose measurement value.
glucoseUnitenum or null
Allowed values:
idlong or null
Unique identifier for the reading.
itemobject or null
The item used to take the reading.
manualboolean or null
True if the reading value was entered manually, false or null otherwise.
patientobject or null
The patient who took the reading.
patientTimeZoneOffsetinteger or null
The offset of the patient's timezone from UTC in seconds. Null if unavailable.
The offset of the device's timezone from UTC in seconds. Null if unavailable.
The blood glucose measurement value.
Unique identifier for the reading.
The item used to take the reading.
True if the reading value was entered manually, false or null otherwise.
The patient who took the reading.
The offset of the patient's timezone from UTC in seconds. Null if unavailable.
API Key authentication via header
OK