Partially Update Vital
Update an existing 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>"
}
]
}
'import requests
url = "https://sandbox.elationemr.com/api/2.0/vitals/{id}/"
payload = {
"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>"
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
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>'}]
})
};
fetch('https://sandbox.elationemr.com/api/2.0/vitals/{id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.elationemr.com/api/2.0/vitals/{id}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'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>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox.elationemr.com/api/2.0/vitals/{id}/"
payload := strings.NewReader("{\n \"bmi\": 123,\n \"bp\": [\n {\n \"diastolic\": \"<string>\",\n \"note\": \"<string>\",\n \"systolic\": \"<string>\"\n }\n ],\n \"chart_date\": \"2023-11-07T05:31:56Z\",\n \"custom_observations\": {},\n \"document_date\": \"2023-11-07T05:31:56Z\",\n \"hc\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"height\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"hr\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"non_visit_note\": 123,\n \"oxygen\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"pain\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"patient\": 123,\n \"practice\": 123,\n \"rr\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"temperature\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"visit_note\": 123,\n \"weight\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://sandbox.elationemr.com/api/2.0/vitals/{id}/")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"bmi\": 123,\n \"bp\": [\n {\n \"diastolic\": \"<string>\",\n \"note\": \"<string>\",\n \"systolic\": \"<string>\"\n }\n ],\n \"chart_date\": \"2023-11-07T05:31:56Z\",\n \"custom_observations\": {},\n \"document_date\": \"2023-11-07T05:31:56Z\",\n \"hc\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"height\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"hr\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"non_visit_note\": 123,\n \"oxygen\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"pain\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"patient\": 123,\n \"practice\": 123,\n \"rr\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"temperature\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"visit_note\": 123,\n \"weight\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.elationemr.com/api/2.0/vitals/{id}/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"bmi\": 123,\n \"bp\": [\n {\n \"diastolic\": \"<string>\",\n \"note\": \"<string>\",\n \"systolic\": \"<string>\"\n }\n ],\n \"chart_date\": \"2023-11-07T05:31:56Z\",\n \"custom_observations\": {},\n \"document_date\": \"2023-11-07T05:31:56Z\",\n \"hc\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"height\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"hr\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"non_visit_note\": 123,\n \"oxygen\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"pain\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"patient\": 123,\n \"practice\": 123,\n \"rr\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"temperature\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"visit_note\": 123,\n \"weight\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"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
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
Body
The blood pressure of the patient. Will allow multiple items in array.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
The head circumference of the patient. Will only allow array of one.
Show child attributes
Show child attributes
The height of the patient. Will only allow array of one.
Show child attributes
Show child attributes
The heart rate of the patient. Will only allow array of one.
Show child attributes
Show child attributes
The non-visit note that the vital belongs to. Will only allow unsigned non-visit notes.
The oxygen saturation of the patient. Will only allow array of one.
Show child attributes
Show child attributes
The pain of the patient. Will only allow array of one.
Show child attributes
Show child attributes
The respiratory rate of the patient. Will only allow array of one.
Show child attributes
Show child attributes
The temperature of the patient. Will only allow array of one.
Show child attributes
Show child attributes
The visit note that the vital belongs to. Will only allow unsigned visit notes.
The weight of the patient. Will only allow array of one.
Show child attributes
Show child attributes
Response
The BMI percentile of the patient. Optional. Will be automatically calculated from height and weight otherwise.
The blood pressure of the patient. Will allow multiple items in array.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
The head circumference of the patient. Will only allow array of one.
Show child attributes
Show child attributes
The height of the patient. Will only allow array of one.
Show child attributes
Show child attributes
The heart rate of the patient. Will only allow array of one.
Show child attributes
Show child attributes
The length for weight percentile for the patient.
The non-visit note that the vital belongs to. Will only allow unsigned non-visit notes.
The oxygen saturation of the patient. Will only allow array of one.
Show child attributes
Show child attributes
The pain of the patient. Will only allow array of one.
Show child attributes
Show child attributes
The respiratory rate of the patient. Will only allow array of one.
Show child attributes
Show child attributes
The temperature of the patient. Will only allow array of one.
Show child attributes
Show child attributes
The visit note that the vital belongs to. Will only allow unsigned visit notes.
The weight of the patient. Will only allow array of one.
Show child attributes
Show child attributes
Was this page helpful?
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>"
}
]
}
'import requests
url = "https://sandbox.elationemr.com/api/2.0/vitals/{id}/"
payload = {
"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>"
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
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>'}]
})
};
fetch('https://sandbox.elationemr.com/api/2.0/vitals/{id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.elationemr.com/api/2.0/vitals/{id}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'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>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox.elationemr.com/api/2.0/vitals/{id}/"
payload := strings.NewReader("{\n \"bmi\": 123,\n \"bp\": [\n {\n \"diastolic\": \"<string>\",\n \"note\": \"<string>\",\n \"systolic\": \"<string>\"\n }\n ],\n \"chart_date\": \"2023-11-07T05:31:56Z\",\n \"custom_observations\": {},\n \"document_date\": \"2023-11-07T05:31:56Z\",\n \"hc\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"height\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"hr\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"non_visit_note\": 123,\n \"oxygen\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"pain\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"patient\": 123,\n \"practice\": 123,\n \"rr\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"temperature\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"visit_note\": 123,\n \"weight\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://sandbox.elationemr.com/api/2.0/vitals/{id}/")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"bmi\": 123,\n \"bp\": [\n {\n \"diastolic\": \"<string>\",\n \"note\": \"<string>\",\n \"systolic\": \"<string>\"\n }\n ],\n \"chart_date\": \"2023-11-07T05:31:56Z\",\n \"custom_observations\": {},\n \"document_date\": \"2023-11-07T05:31:56Z\",\n \"hc\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"height\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"hr\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"non_visit_note\": 123,\n \"oxygen\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"pain\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"patient\": 123,\n \"practice\": 123,\n \"rr\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"temperature\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"visit_note\": 123,\n \"weight\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.elationemr.com/api/2.0/vitals/{id}/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"bmi\": 123,\n \"bp\": [\n {\n \"diastolic\": \"<string>\",\n \"note\": \"<string>\",\n \"systolic\": \"<string>\"\n }\n ],\n \"chart_date\": \"2023-11-07T05:31:56Z\",\n \"custom_observations\": {},\n \"document_date\": \"2023-11-07T05:31:56Z\",\n \"hc\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"height\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"hr\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"non_visit_note\": 123,\n \"oxygen\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"pain\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"patient\": 123,\n \"practice\": 123,\n \"rr\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"temperature\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"visit_note\": 123,\n \"weight\": [\n {\n \"note\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"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>"
}
]
}