Skip to main content
GET
/
api
/
2.0
/
bills
List Bills
curl --request GET \
  --url https://sandbox.elationemr.com/api/2.0/bills/ \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "billing_date": "2023-11-07T05:31:56Z",
      "billing_error": "<string>",
      "billing_raw_error": "<string>",
      "billing_provider": 123,
      "cpts": [
        {
          "alt_dxs": [
            "<string>"
          ],
          "cpt": "<string>",
          "dxs": [
            "<string>"
          ],
          "modifiers": [
            "<string>"
          ],
          "ndc": "<string>",
          "ndc_dose": "<string>",
          "ndc_measure": "<string>",
          "unit_charge": "<string>",
          "units": "<string>"
        }
      ],
      "created_date": "2023-11-07T05:31:56Z",
      "deferred_bill": true,
      "id": 123,
      "last_modified_date": "2023-11-07T05:31:56Z",
      "metadata": {
        "data": {},
        "object_id": "<string>",
        "object_web_link": "<string>"
      },
      "notes": "<string>",
      "ordering_provider": {
        "name": "<string>",
        "state": "<string>",
        "npi": "<string>"
      },
      "patient": 123,
      "payment": {
        "amount": "<string>",
        "when_collected": "2023-11-07T05:31:56Z",
        "appointment": 123,
        "bill": 123,
        "create_date": "2023-11-07T05:31:56Z",
        "delete_date": "2023-11-07T05:31:56Z",
        "id": 123
      },
      "physician": 123,
      "practice": 123,
      "prior_authorization": "<string>",
      "ref_number": "<string>",
      "referring_provider": {
        "name": "<string>",
        "state": "<string>",
        "npi": "<string>"
      },
      "rendering_provider": 123,
      "service_date": "2023-11-07T05:31:56Z",
      "service_date_timezone": "<string>",
      "service_location": {
        "address_line1": "<string>",
        "name": "<string>",
        "practice": 123,
        "state": "<string>",
        "address_line2": "<string>",
        "city": "",
        "created_date": "2023-11-07T05:31:56Z",
        "deleted_date": "2023-11-07T05:31:56Z",
        "email": "jsmith@example.com",
        "fax": "<string>",
        "id": 123,
        "is_primary": false,
        "phone": "<string>",
        "place_of_service_code": 123,
        "status": "active",
        "zip": ""
      },
      "supervising_provider": 123,
      "visit_note_deleted_date": "2023-11-07T05:31:56Z",
      "visit_note_id": 123,
      "visit_note_signed_date": "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

assigned_physician
integer<int64>[]

The id of the physician who is assigned to this bill, could be different from the signer.

bill_id
integer<int64>[]

Multiple values may be separated by commas.

from_service_date
string<date-time>
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<int64>[]

Multiple values may be separated by commas.

practice
integer<int64>[]

The id of the practice that is responsible for the bill.

signing_physician
string

The id of the physician who signed off on the visit note that is associated with this bill.

to_service_date
string<date-time>
visit_note_id
integer<int64>[]

The id of the visit note this bill is attached to.

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"