Skip to main content
GET
/
api
/
2.0
/
vitals
/
{id}
/
Retrieve Vital
curl --request GET \
  --url https://sandbox.elationemr.com/api/2.0/vitals/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "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>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer<int64>
required

Response

200 - application/json
patient
integer<int64>
required
practice
integer<int64>
required
bmi
number<double> | null
bmi_percentile
integer | null
read-only

The BMI percentile of the patient. Optional. Will be automatically calculated from height and weight otherwise.

bp
object[]

The blood pressure of the patient. Will allow multiple items in array.

chart_date
string<date-time>
created_date
string<date-time> | null
read-only
custom_observations
object
deleted_date
string<date-time> | null
read-only
document_date
string<date-time>
hc
object[]

The head circumference of the patient. Will only allow array of one.

height
object[]

The height of the patient. Will only allow array of one.

hr
object[]

The heart rate of the patient. Will only allow array of one.

id
integer
read-only
length_for_weight_percentile
number<double> | null
read-only

The length for weight percentile for the patient.

non_visit_note
integer<int64> | null

The non-visit note that the vital belongs to. Will only allow unsigned non-visit notes.

oxygen
object[]

The oxygen saturation of the patient. Will only allow array of one.

pain
object[]

The pain of the patient. Will only allow array of one.

rr
object[]

The respiratory rate of the patient. Will only allow array of one.

signed_by
integer<int64>
read-only
signed_date
string<date-time> | null
read-only
temperature
object[]

The temperature of the patient. Will only allow array of one.

visit_note
integer<int64> | null

The visit note that the vital belongs to. Will only allow unsigned visit notes.

weight
object[]

The weight of the patient. Will only allow array of one.