Readings - Weight

Fetch Weight Reading

GET
Fetches a specific Impilo weight reading by its ID.

Path parameters

readingIdintegerRequired

Response

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