/
Sharing your Unique Identifiers
Sharing your Unique Identifiers
Setting your unique id
We recommend that all systems provide there own unique identifier for the Patient and the ServiceRequest that is submitted to the CIE Hub. This will be done by providing a value in the identifier section of the FHIR resources. This will allow the third party system to be able to query by that id.
The following is a link to the FHIR specification of this attribute that is on both records. https://www.hl7.org/fhir/datatypes.html#Identifier Please note that it is important to set the system and also the type. The system should be a uri to the client system.
The following is a example
"identifier": [
{
"system": "https://thirdparty.com", // This identifies whose identifer this is
"type": {
"text": "id" // This will distungish which type of id it is. for example it could be MRN or CRM_ID
},
"use": "official",
"value": "10756245014" // This is the value of the identifer
}
],
, multiple selections available,
Related content
Use Case - Query status of a ServiceRequest that was submitted
Use Case - Query status of a ServiceRequest that was submitted
More like this
Use Case - Submit a New ServiceRequest
Use Case - Submit a New ServiceRequest
More like this
POST /Patient
POST /Patient
More like this
POST /ServiceRequest
POST /ServiceRequest
More like this
POST /Procedure
POST /Procedure
More like this
CIE Hub API Technical Documentation based on FHIR Standard
CIE Hub API Technical Documentation based on FHIR Standard
More like this