Skip to main content
GET
/
notes
List Notes
curl --request GET \
  --url https://sandbox.elationemr.com/api/2.0/notes \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "limit": 123,
  "offset": 123,
  "results": [
    {
      "category": 123,
      "id": 123,
      "is_draft": true,
      "patient": 123,
      "practice": 123,
      "provider": 123,
      "serviced_at": "<string>",
      "bill": 123,
      "confidential": false,
      "doctags": [],
      "metadata": "<unknown>",
      "note_v1_id": 123
    }
  ],
  "next": "<string>",
  "previous": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://help.elationhealth.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:20

Limit for pagination

Required range: 1 <= x <= 100
offset
integer
default:0

Offset for pagination

practice_id
integer | null

Filter by practice ID

is_draft
string | null

True to filter to draft notes only. False to include only signed notes. Omit to include both.

patient
integer | null

Filter by patient ID

providers
string | null

Comma separated list of provider IDs

Response

Successful Response

count
integer
required
limit
integer
required
offset
integer
required
results
NoteMetadata · object[]
required
next
string | null
previous
string | null