Skip to main content
GET
/
api
/
2.0
/
reports
List Reports
curl --request GET \
  --url https://sandbox.elationemr.com/api/2.0/reports/ \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "chart_date": "2023-11-07T05:31:56Z",
      "document_date": "2023-11-07T05:31:56Z",
      "patient": 123,
      "physician": 123,
      "practice": 123,
      "created_date": "2023-11-07T05:31:56Z",
      "custom_title": "<string>",
      "deleted_date": "2023-11-07T05:31:56Z",
      "files": [
        {
          "base64_content": "<string>",
          "content_type": "<string>",
          "document": "<string>",
          "external_content": "<unknown>",
          "id": 123,
          "original_filename": "<string>"
        }
      ],
      "grids": [
        {
          "accession_number": "<string>",
          "collected_date": "2023-11-07T05:31:56Z",
          "note": "<string>",
          "resulted_date": "2023-11-07T05:31:56Z",
          "results": [
            {
              "is_abnormal": true,
              "note": "<string>",
              "reference_max": "<string>",
              "reference_min": "<string>",
              "test": {
                "code": "<string>",
                "loinc": "<string>",
                "name": "<string>"
              },
              "test_category": {
                "description": "<string>",
                "value": "<string>"
              },
              "text": "<string>",
              "value": "<string>",
              "units": "<string>"
            }
          ]
        }
      ],
      "id": 123,
      "images": [
        {
          "document": "<string>",
          "id": 123
        }
      ],
      "is_urgent": false,
      "printable_view": "<string>",
      "reported_date": "2023-11-07T05:31:56Z",
      "requisition_number": "<string>",
      "routed_document_delegates": [
        {
          "created_date": "2023-11-07T05:31:56Z",
          "deleted_date": "2023-11-07T05:31:56Z",
          "group": 123,
          "id": 123,
          "user": 123
        }
      ],
      "signed_by": 123,
      "signed_date": "2023-11-07T05:31:56Z",
      "tags": [
        123
      ],
      "vendor": 123
    }
  ],
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100"
}

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

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

document_date__gt
string<date-time>

Date/time in ISO 8601 UTC format that selects document dates that follow it (exclusive).

document_date__gte
string<date-time>

Date/time in ISO 8601 UTC format that selects document dates that follow it (inclusive).

document_date__lt
string<date-time>

Date/time in ISO 8601 UTC format that selects document dates that precede it (exclusive).

document_date__lte
string<date-time>

Date/time in ISO 8601 UTC format that selects document dates that precede it (inclusive).

limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

order_by
string

Which field to use when ordering the results.

patient
integer[]

Multiple values may be separated by commas.

practice
integer<int64>[]

Multiple values may be separated by commas.

reported_date__gt
string<date-time>

Date/time in ISO 8601 UTC format that selects report dates that follow it (exclusive). It may be null in some cases, use document_date instead.

reported_date__gte
string<date-time>

Date/time in ISO 8601 UTC format that selects report dates that follow it (inclusive). It may be null in some cases, use document_date instead.

reported_date__lt
string<date-time>

Date/time in ISO 8601 UTC format that selects report dates that precede it (exclusive). It may be null in some cases, use document_date instead.

reported_date__lte
string<date-time>

Date/time in ISO 8601 UTC format that selects report dates that precede it (exclusive). It may be null in some cases, use document_date instead.

Response

200 - application/json
results
object[]
required
count
integer
Example:

123

next
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=400&limit=100"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=200&limit=100"