Skip to main content
GET
/
notes
List Notes
curl --request GET \
  --url https://sandbox.elationemr.com/api/2.0/notes \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://sandbox.elationemr.com/api/2.0/notes"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://sandbox.elationemr.com/api/2.0/notes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.elationemr.com/api/2.0/notes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://sandbox.elationemr.com/api/2.0/notes"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://sandbox.elationemr.com/api/2.0/notes")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://sandbox.elationemr.com/api/2.0/notes")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "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>"
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}

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