Readings - Blood Glucose

Fetch Blood Glucose Reading

GET
This endpoint returns a specific blood glucose reading based on the reading identifier provided in the path.

Path parameters

readingIdintegerRequired

Response

This endpoint returns an object
id
integerOptional
Unique identifier for the reading.
patient
objectOptional
The patient who took the reading.
item
objectOptional
The item used to take the reading.
device
objectOptional
The device used to take the reading.
readingTimestamp
stringOptional
The timestamp at which the reading was taken.
glucose
integerOptional
The blood glucose measurement value.
manual
booleanOptional
True if the reading value was entered manually, false otherwise.
beforeMeal
booleanOptional
True if the reading was taken before a meal, false otherwise.
afterMeal
booleanOptional
True if the reading was taken after a meal, false otherwise.
GET
1curl https://app.impiloplatform.com/api/v3/blood-glucose-reading/1 \
2 -H "Impilo-API-Key: <apiKey>"
200
Retrieved
1{
2 "id": 123,
3 "patient": {
4 "id": 456,
5 "externalIdentifier": "external-identifier-123",
6 "firstName": "John",
7 "lastName": "Doe",
8 "dateOfBirth": "01-01-2000",
9 "email": "email@example.com",
10 "phoneNumber": "111-222-3333",
11 "archived": true,
12 "address": {
13 "lineOne": "1234 Market Street",
14 "lineTwo": "Suite 110",
15 "lineThree": "lineThree",
16 "city": "Philadelphia",
17 "state": "PA",
18 "zipCode": "19137",
19 "country": "USA",
20 "note": "note"
21 },
22 "site": {
23 "id": 1,
24 "name": "name",
25 "active": true
26 },
27 "enrolled": true,
28 "sex": "unknown"
29 },
30 "item": {
31 "id": 1,
32 "manufacturer": {
33 "id": 2,
34 "name": "Custom Manufacturer"
35 },
36 "name": "Blood Pressure Monitor",
37 "model": "iBloodPressureMonitor123",
38 "sku": "0000001"
39 },
40 "device": {
41 "id": 3,
42 "item": {
43 "id": 1,
44 "manufacturer": {
45 "id": 2,
46 "name": "Custom Manufacturer"
47 },
48 "name": "Blood Pressure Monitor",
49 "model": "iBloodPressureMonitor123",
50 "sku": "0000001"
51 },
52 "currentStatus": "withPatient",
53 "used": true,
54 "currentPatient": {
55 "id": 456,
56 "externalIdentifier": "external-identifier-123",
57 "firstName": "John",
58 "lastName": "Doe",
59 "dateOfBirth": "01-01-2000",
60 "email": "email@example.com",
61 "phoneNumber": "111-222-3333",
62 "archived": true,
63 "address": {
64 "lineOne": "1234 Market Street",
65 "lineTwo": "Suite 110",
66 "city": "Philadelphia",
67 "state": "PA",
68 "zipCode": "19137",
69 "country": "USA"
70 },
71 "site": {
72 "id": 1
73 },
74 "enrolled": true,
75 "sex": "unknown"
76 },
77 "site": {
78 "id": 1,
79 "name": "name",
80 "active": true
81 },
82 "lastHealthCheck": "lastHealthCheck",
83 "deviceIdentifiers": [
84 {
85 "type": "serial",
86 "value": "abc"
87 }
88 ],
89 "deviceEvents": [
90 {}
91 ],
92 "externalIdentifier": "externalIdentifier"
93 },
94 "readingTimestamp": "2024-04-15T18:20:36Z",
95 "glucose": 88,
96 "manual": false,
97 "beforeMeal": false,
98 "afterMeal": false
99}