Skip to main content
GET
/
api
/
2.0
/
vitals
/
List Vitals
curl --request GET \
  --url https://sandbox.elationemr.com/api/2.0/vitals/ \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "patient": 123,
      "practice": 123,
      "bmi": 123,
      "bmi_percentile": 123,
      "bp": [
        {
          "diastolic": "<string>",
          "note": "<string>",
          "systolic": "<string>"
        }
      ],
      "chart_date": "2023-11-07T05:31:56Z",
      "created_date": "2023-11-07T05:31:56Z",
      "custom_observations": {},
      "deleted_date": "2023-11-07T05:31:56Z",
      "document_date": "2023-11-07T05:31:56Z",
      "hc": [
        {
          "note": "<string>",
          "percentile": 123,
          "units": "cm",
          "value": "<string>"
        }
      ],
      "height": [
        {
          "note": "<string>",
          "units": "inches",
          "value": "<string>"
        }
      ],
      "hr": [
        {
          "note": "<string>",
          "units": "bpm",
          "value": "<string>"
        }
      ],
      "id": 123,
      "length_for_weight_percentile": 123,
      "non_visit_note": 123,
      "oxygen": [
        {
          "note": "<string>",
          "units": "%",
          "value": "<string>"
        }
      ],
      "pain": [
        {
          "note": "<string>",
          "value": "<string>"
        }
      ],
      "rr": [
        {
          "note": "<string>",
          "units": "bpm",
          "value": "<string>"
        }
      ],
      "signed_by": 123,
      "signed_date": "2023-11-07T05:31:56Z",
      "temperature": [
        {
          "note": "<string>",
          "value": "<string>"
        }
      ],
      "visit_note": 123,
      "weight": [
        {
          "note": "<string>",
          "units": "lbs",
          "value": "<string>"
        }
      ]
    }
  ],
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer

Number of results to return per page.

non_visit_note
integer<int64>[]

Multiple values may be separated by commas.

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.

visit_note
integer<int64>[]

Multiple values may be separated by commas.

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"