Readings - Blood Pressure

List Blood Pressure Readings

GET
Retrieves a paginated list of blood pressure readings from the Impilo platform. Optional parameters can be used to filter the results by page number, page size, patient ID, external ID, start timestamp, and end timestamp.

Query parameters

endTimestampstringOptional
externalIdentifierstringOptional
pageintegerOptional
patientIdintegerOptional
sizeintegerOptional
startTimestampstringOptional

Response

This endpoint returns an object
content
list of objectsOptional
The content of the page, consisting of a list of objects.
page
integerOptional
The current page number. The first page has value 1.
size
integerOptional
The current page size. Default 15, maximum 250.
total
integerOptional
The number of objects matching the request.
first
booleanOptional
True if this is the first page, false otherwise.
last
booleanOptional
True if this is the last page, false otherwise.
GET
1curl https://app.impiloplatform.com/api/v3/blood-pressure-reading \
2 -H "Impilo-API-Key: <apiKey>"
200
Retrieved
1{
2 "content": [
3 {
4 "id": 1,
5 "patient": {
6 "id": 1,
7 "externalIdentifier": "1234abcd",
8 "firstName": "John",
9 "lastName": "Doe",
10 "dateOfBirth": "1980-01-01T00:00:00Z",
11 "email": "john.doe@example.com",
12 "phoneNumber": "+1234567890",
13 "archived": true,
14 "sex": "female"
15 },
16 "item": {
17 "id": 1
18 },
19 "device": {
20 "id": 1
21 },
22 "readingTimestamp": "readingTimestamp",
23 "systolic": 1,
24 "diastolic": 1,
25 "heartRate": 1,
26 "manual": true
27 }
28 ],
29 "page": 1,
30 "size": 1,
31 "total": 1,
32 "first": true,
33 "last": true
34}