Skip to main content
GET
/
notes
/
custom-blocks
List Custom Blocks
curl --request GET \
  --url https://sandbox.elationemr.com/api/2.0/notes/custom-blocks \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "limit": 123,
  "offset": 123,
  "results": [
    {
      "id": 123,
      "is_system_template": true,
      "label": "<string>",
      "practice_id": 123,
      "aliases": [],
      "content": [],
      "created_by": 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

Response

Successful Response

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