Skip to main content

New

Description

A New message is utilized to add new observations to a flowsheet, which is a structured document used to record and track patient data over time. This message may contain multiple different observations bundled together. Observations could include vital signs, lab results, assessments, or any other type of clinical data that needs to be documented and recorded in the flowsheet.

API endpoint for New Flowsheets

Sync REST API Endpoint to call the API: https://{base_url}/api/v1/flowsheet/new.

Async REST API Endpoint to call the API: https://{base_url}/api/v1/endpoint.

Data Model JSON for New Flowsheet

New - Sample Payload
{
"Meta": {
"DataModel": "Flowsheet",
"EventType": "New",
"EventDateTime": "2022-08-16T14:21:20.733Z",
"Test": true,
"Source": {
"ID": "2000f09a-bced-4edd-80e7-e9ba8ba27ea6",
"Name": "EHR Bridge Dev Tools"
},
"Destinations": [
{
"ID": "b2772d29-a4e9-40d6-aaea-391f8a34ed3d",
"Name": "Destinations EMR"
}
],
"Logs": [
{
"ID": "25296989-3d55-4e9a-b789-d706b8b5af65",
"AttemptID": "afd2e91e-5ad8-4a77-8dbb-aa655fdc7277"
}
],
"Message": {
"ID": 5565
},
"Transmission": {
"ID": 12414
},
"FacilityCode": null
},
"Patient": {
"Identifiers": [
{
"ID": "0000000001",
"IDType": "MR"
},
{
"ID": "e54f5a65-6ef4-424b-9016-5262338c65d3",
"IDType": "EHRID"
},
{
"ID": "55e06fc3-ee67-4e44-8d8f-54d86249aba3",
"IDType": "NIST"
}
],
"Demographics": {
"FirstName": "Ronnie",
"MiddleName": "Patricks",
"LastName": "Oliver",
"DOB": "2008-01-06",
"SSN": "101-01-0001",
"Sex": "Male",
"Race": "White",
"IsHispanic": null,
"Religion": null,
"MaritalStatus": "Single",
"IsDeceased": null,
"DeathDateTime": null,
"PhoneNumber": {
"Home": "+19088675301",
"Office": null,
"Mobile": null
},
"EmailAddresses": [],
"Language": "en",
"Citizenship": [],
"Address": {
"StreetAddress": "4762 Wallgate Avenue",
"City": "San Jose",
"State": "CA",
"ZIP": "53566",
"County": "Santa Clara",
"Country": "USA"
}
},
"Notes": [],
"Contacts": [
{
"FirstName": "Alen",
"MiddleName": null,
"LastName": "Oliver",
"Address": {
"StreetAddress": "4987 Palm Street",
"City": "San Jose",
"State": "CA",
"ZIP": "53566",
"County": "Santa Clara",
"Country": "USA"
},
"PhoneNumber": {
"Home": "+19088675303",
"Office": "+17457543758",
"Mobile": "+191867368865"
},
"RelationToPatient": "Mother",
"EmailAddresses": [
"alen.bixby@test.net"
],
"Roles": [
"Emergency Contact"
]
}
]
},
"Visit": {
"VisitNumber": "8765",
"AccountNumber": null,
"VisitDateTime": null,
"Location": {
"Type": null,
"Facility": null,
"Department": null,
"Room": null,
"Bed": null
}
},
"Observations": [
{
"DateTime": "2015-08-13T21:08:57.581Z",
"Value": "110.00",
"ValueType": "Numeric",
"Units": "mmHg",
"Code": "Systolic",
"Codeset": "DS EMR",
"Description": null,
"Status": null,
"Notes": [
"Observation note."
],
"Observer": {
"ID": "12312",
"IDType": null,
"FirstName": "James",
"LastName": "Andrews"
},
"ReferenceRange": {
"Low": null,
"High": null,
"Text": null
},
"AbnormalFlag": null
},
{
"DateTime": "2015-08-13T21:08:57.581Z",
"Value": "90.00",
"ValueType": "Numeric",
"Units": "mmHg",
"Code": "Diastolic",
"Codeset": "DS EMR",
"Description": null,
"Status": null,
"Notes": [],
"Observer": {
"ID": "12312",
"IDType": null,
"FirstName": "James",
"LastName": "Andrews"
},
"ReferenceRange": {
"Low": null,
"High": null,
"Text": null
},
"AbnormalFlag": null
},
{
"DateTime": "2015-08-13T21:08:57.581Z",
"Value": "55",
"ValueType": "Numeric",
"Units": "beats/min",
"Code": "Diastolic",
"Codeset": "DS EMR",
"Description": null,
"Status": null,
"Notes": [],
"Observer": {
"ID": "12312",
"IDType": null,
"FirstName": "James",
"LastName": "Andrews"
},
"ReferenceRange": {
"Low": null,
"High": null,
"Text": null
},
"AbnormalFlag": null
}
]
}