View clinical notes
This endpoint returns the clinical notes for the specified location. At least one of the patient_id, procedure_id, entered_before, entered_after, or updated_since filters must be provided. Results are cursor-paginated.
Query parameters
Used to scope the request to the specified institution
Used to scope the request to the specified location
Filter by the id of the associated patient
Filter by procedure, only return clinical notes that are associated with the procedure ID. This association only exists in certain EHRs and for certain types of notes
Only return clinical notes that were created on or before the provided datetime
Only return clinical notes that were created on or after the provided datetime
Only return clinical notes updated after the specified time (UTC)
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.
Headers
The NexHealth API version
Response
Successful
Example response
{
"description": "Description",
"error": [
"Error message"
],
"data": [
{
"id": 113,
"patient_id": 115,
"procedure_id": 116,
"entered_at": "2021-01-01T00:00:00Z",
"content": "Patient has a fever",
"signed": true,
"completed": true,
"updated_at": "2020-06-05T20:16:57.007Z"
}
],
"page_info": {
"has_previous_page": false,
"has_next_page": false,
"start_cursor": "AAAAA",
"end_cursor": "BBBBBB"
}
}