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 Temperature

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

List Temperature Readings

Next
Built with
Fetches a specific Impilo temperature reading by its ID.
Fetch Temperature Reading

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.
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.
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.
temperaturedouble or null
The temperature measurement value.
temperatureUnitstring or null
The unit in which the temperature was measured.