Readings - Blood Oxygen

Fetch Blood Oxygen Reading

GET
Fetches a specific Impilo blood oxygen reading by its ID.

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.
bloodOxygen
integerOptional
The blood oxygen (spo2) measurement value.
heartRate
integerOptional
The heart rate measurement value.
manual
booleanOptional
True if the reading value was entered manually, false otherwise.
GET
1curl https://app.impiloplatform.com/api/v3/blood-oxygen-reading/1 \
2 -H "Impilo-API-Key: <apiKey>"
200
Retrieved
1{
2 "id": 1,
3 "patient": {
4 "id": 1,
5 "externalIdentifier": "1234abcd",
6 "firstName": "John",
7 "lastName": "Doe",
8 "dateOfBirth": "1980-01-01T00:00:00Z",
9 "email": "john.doe@example.com",
10 "phoneNumber": "+1234567890",
11 "archived": true,
12 "address": {
13 "lineOne": "lineOne",
14 "lineTwo": "lineTwo",
15 "lineThree": "lineThree",
16 "city": "city",
17 "state": "state",
18 "zipCode": "zipCode",
19 "country": "country",
20 "note": "note"
21 },
22 "site": {
23 "id": 1,
24 "name": "name",
25 "active": true
26 },
27 "enrolled": true,
28 "sex": "female"
29 },
30 "item": {
31 "id": 1,
32 "manufacturer": {
33 "id": 1,
34 "name": "name"
35 },
36 "name": "name",
37 "model": "model",
38 "sku": "sku"
39 },
40 "device": {
41 "id": 1,
42 "item": {
43 "id": 1,
44 "manufacturer": {
45 "id": 1
46 },
47 "name": "name",
48 "model": "model",
49 "sku": "sku"
50 },
51 "currentStatus": "currentStatus",
52 "used": true,
53 "currentPatient": {
54 "id": 1,
55 "externalIdentifier": "1234abcd",
56 "firstName": "John",
57 "lastName": "Doe",
58 "dateOfBirth": "1980-01-01T00:00:00Z",
59 "email": "john.doe@example.com",
60 "phoneNumber": "+1234567890",
61 "archived": true,
62 "site": {
63 "id": 1
64 },
65 "enrolled": true,
66 "sex": "female"
67 },
68 "site": {
69 "id": 1,
70 "name": "name",
71 "active": true
72 },
73 "lastHealthCheck": "lastHealthCheck",
74 "deviceIdentifiers": [
75 {}
76 ],
77 "deviceEvents": [
78 {}
79 ],
80 "externalIdentifier": "externalIdentifier"
81 },
82 "readingTimestamp": "readingTimestamp",
83 "bloodOxygen": 1,
84 "heartRate": 1,
85 "manual": true
86}