View patient recalls
This endpoint returns the patient recalls for the specified location, narrowed down by the optional filters configured.
Query parameters
Used to scope the request to the specified institution
First item of the current page. Starts empty
Last item of the current page. Starts empty
Number of results to return per page. Maximum allowed amount is 1000.
Used to scope the request to the specified location
Filter by the id of the associated recall type
Filter by the id of the associated patient
Filter by the EHR id of the recall
Return records updated since the specified date/time in ISO8601 format
Return recalls due on or after the specified date/time in ISO8601 format
Optional comma-separated string of fields to sort on. Include a leading dash for descending order.
Available fields:
- date_due
- -date_due
Headers
The NexHealth API version
Response
Successful
Example response
{
"description": "Description",
"error": [
"Error message"
],
"data": [
{
"id": 1,
"appointment_id": 1,
"date_due": "2024-08-15",
"foreign_id": "1",
"foreign_id_type": "msg-mdland-Institution-3",
"recall_id": 1,
"recall_type": {
"id": 1,
"name": "PROPHY",
"description": "A recall description",
"interval_num": 8,
"interval_unit": "M"
},
"patient_id": 1,
"created_at": "2019-09-13T15:11:28Z",
"updated_at": "2019-09-13T15:11:28Z"
}
],
"page_info": {
"has_previous_page": false,
"has_next_page": false,
"start_cursor": "AAAAA",
"end_cursor": "BBBBBB"
}
}