Skip to main content

New

Description

A New message is used to add new observations obtained from a device to a patient's electronic health record (EHR). This message may contain multiple observations from different devices within a single message. It's important to note that patient information and visit information may be included in the message, but in many cases, the EHR system maps the device ID directly to the patient or to a specific room/bed, and may ignore the patient and visit information provided in the message.

API Endpoints for New Devices

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

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

Data Model JSON for New Devices

New - Sample Payload
{
"Meta": {
"DataModel": "Device",
"EventType": "New",
"EventDateTime": "2022-08-16T14:21:20.733Z",
"Test": true,
"Source": {
"ID": "f3630101-6b73-42c2-94a4-a4e75e07862d ",
"Name": "EHR Bridge Dev Tools"
},
"Destinations": [
{
"ID": "2b285e08-ce1e-45bd-bed6-eacae4c33d0c",
"Name": "Destinations EMR"
}
],
"Logs": [
{
"ID": "30825a06-f886-4a45-a9e2-960bbabf2d08 ",
"AttemptID": "d96d57d1-db96-4083-9dfa-3a5bebb60ff5"
}
],
"Message": {
"ID": 5565
},
"Transmission": {
"ID": 12414
},
"FacilityCode": null
},
"Patient": {
"Identifiers": [
{
"ID": "0000000001",
"IDType": "MR"
},
{
"ID": "be18be34-3ad1-407c-bb83-4ec7b657cc45",
"IDType": "EHRID"
},
{
"ID": "b248b407-289d-4e7b-985d-b4a3a187f12f",
"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": "Alexa",
"MiddleName": null,
"LastName": "Brown",
"Address": {
"StreetAddress": "4762 Wallgate Avenue",
"City": "San Jose",
"State": "CA",
"ZIP": "53566",
"County": "Santa Clara",
"Country": "USA"
},
"PhoneNumber": {
"Home": "+19088675303",
"Office": "+17045543758",
"Mobile": "+19178368865"
},
"RelationToPatient": "Mother",
"EmailAddresses": [
"alexa.b@test.net"
],
"Roles": [
"Emergency Contact"
]
}
]
},
"Visit": {
"VisitNumber": "1234",
"Location": {
"Type": null,
"Facility": null,
"Department": null,
"Room": null,
"Bed": null
}
},
"Device": {
"ID": "dev28701"
},
"Observations": [
{
"DateTime": "2015-08-13T21:08:57.581Z",
"Code": "Systolic",
"Value": "110.00",
"ValueType": "Numeric",
"Units": "mmHg"
},
{
"DateTime": "2015-08-13T21:08:57.581Z",
"Code": "Diastolic",
"Value": "90.00",
"ValueType": "Numeric",
"Units": "mmHg"
},
{
"DateTime": "2015-08-13T21:08:57.581Z",
"Code": "Heart Rate",
"Value": "55",
"ValueType": "Numeric",
"Units": "beats/min"
}
]
}