Skip to main content
PATCH
/
api
/
2.0
/
vitals
/
{id}
Partially Update Vital
curl --request PATCH \
  --url https://sandbox.elationemr.com/api/2.0/vitals/{id}/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "bmi": 123,
  "bp": [
    {
      "diastolic": "<string>",
      "note": "<string>",
      "systolic": "<string>"
    }
  ],
  "chart_date": "2023-11-07T05:31:56Z",
  "custom_observations": {},
  "document_date": "2023-11-07T05:31:56Z",
  "hc": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ],
  "height": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ],
  "hr": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ],
  "non_visit_note": 123,
  "oxygen": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ],
  "pain": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ],
  "patient": 123,
  "practice": 123,
  "rr": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ],
  "temperature": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ],
  "visit_note": 123,
  "weight": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ]
}
'
{
  "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,
      "value": "<string>"
    }
  ],
  "height": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ],
  "hr": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ],
  "id": 123,
  "length_for_weight_percentile": 123,
  "non_visit_note": 123,
  "oxygen": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ],
  "pain": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ],
  "rr": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ],
  "signed_by": 123,
  "signed_date": "2023-11-07T05:31:56Z",
  "temperature": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ],
  "visit_note": 123,
  "weight": [
    {
      "note": "<string>",
      "value": "<string>"
    }
  ]
}

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.

Path Parameters

id
integer<int64>
required

Body

application/json
bmi
number<double> | null
bp
object[]

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

chart_date
string<date-time>
custom_observations
object
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.

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.

patient
integer<int64>
practice
integer<int64>
rr
object[]

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

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.

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.