...
Step one is to register a patient within the system. Please note that if you have already submitted a patient you do not need to do this step again. The CIE hub also has the ability for you to share your unique identifiers to the record in this way you will be able to do searches by using your unique identifier. The following describes that process. Sharing your Unique Identifiers
The following is a example payload for a patient
Code Block |
---|
{
"active": true,
"address": [
{
"city": "Detroit",
"district": "Wayne",
"line": [
"1111 Test Street"
],
"postalCode": "48217",
"state": "MI",
"text": " 1111 Test Street, Detroit, MI, United States",
"type": "physical",
"use": "offical"
}
],
"birthDate": "1989-05-31",
"communication": [
{
"language": {
"coding": [
{
"code": "en-US",
"display": "English"
}
]
},
"preferred": true
}
],
"extension": [
{
"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
"valueString": "Black / African American"
},
{
"url": "http://hl7.org/fhir/us/military-service/StructureDefinition/military-service-veteran-status",
"valueBoolean": false
},
{
"url": "http://hl7.org/fhir/StructureDefinition/patient-preferenceType",
"valueString": "Text Message"
}
],
"gender": "female",
"id": "cd521181-661f-480e-8d47-50ad810d712f",
"identifier": [
{
"system": "https://YOUR-URL.org",
"type": {
"text": "patientId"
},
"use": "official",
"value": "3058423"
}
],
"name": [
{
"family": "TESTER",
"given": [
"TEST"
],
"use": "official"
}
],
"resourceType": "Patient",
"telecom": [
{
"rank": 1,
"system": "phone",
"use": "mobile",
"value": "(313) 111-1111"
},
{
"rank": 2,
"system": "email",
"use": "home",
"value": "test@gmail.com"
}
]
} |