Skip to main content
GET
/
api
/
2.0
/
incoming_files
List Incoming Files
curl --request GET \
  --url https://sandbox.elationemr.com/api/2.0/incoming_files/ \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "group_name": "<string>",
      "practice": 123,
      "created_date": "2023-11-07T05:31:56Z",
      "external_fax_id": "<string>",
      "file_size": 123,
      "files": [
        {
          "content_type": "<string>",
          "filename": "<string>",
          "created_date": "2023-11-07T05:31:56Z",
          "deleted_date": "2023-11-07T05:31:56Z",
          "file_size": 123,
          "file_url": "<string>",
          "id": 123,
          "incoming_file": 123,
          "practice": 123
        }
      ],
      "from_number": "<string>",
      "id": 123,
      "images": [
        {
          "created_date": "2023-11-07T05:31:56Z",
          "deleted_date": "2023-11-07T05:31:56Z",
          "file_size": 123,
          "height": 123,
          "id": 123,
          "image_url": "<string>",
          "incoming_file": 123,
          "original_extension": "<string>",
          "original_height": 123,
          "original_padded": 123,
          "original_rotation": 123,
          "original_width": 123,
          "practice": 123,
          "quality_score": 123,
          "quality_score_by": 123,
          "received_date": "2023-11-07T05:31:56Z",
          "rotation": 123,
          "sequence": 123,
          "width": 123
        }
      ],
      "page_count": 123,
      "practice_fax": "<string>",
      "process_complete_time": "2023-11-07T05:31:56Z",
      "process_result": "<string>",
      "process_start_time": "2023-11-07T05:31:56Z",
      "received_time": "2023-11-07T05:31:56Z",
      "subject": "<string>",
      "to_company": "<string>",
      "to_name": "<string>",
      "to_number": "<string>",
      "transmit_time": "2023-11-07T05:31:56Z"
    }
  ],
  "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

created_date__gte
string<date-time>
created_date__lte
string<date-time>
from_number
string
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.

practice
integer<int64>[]

Multiple values may be separated by commas.

practice_fax
string
process_state
enum<string>
  • complete - complete
  • error - error
  • processing - processing
Available options:
complete,
error,
processing
received_time__gte
string<date-time>
received_time__lte
string<date-time>

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"