Check the status of a specific patientThis example demonstrates how to check the status of a single, specific patient based on their NHS number.
Example requestThis example is written for sandbox.patientsknowbest.com; replace the URL as needed if you are connecting to a different environment.
Note: whilst every effort has been made to ensure that the examples are correct and useful, they do not form part of the official specification. {
"resourceType": "Parameters",
"parameter": [
{
"name": "patientIdentifier",
"valueIdentifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
}
]
} Example responseNote: whilst every effort has been made to ensure that the examples are correct and useful, they do not form part of the official specification. {
"resourceType" : "Parameters",
"parameter" :
[
{
"name" : "patientStatus",
"part" :
[
{
"name" : "patientIdentifier",
"valueIdentifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
{
"name" : "registered",
"valueBoolean" : true
},
{
"name" : "deceased",
"valueBoolean" : false
},
{
"name" : "dateOfBirth",
"valueDate" : "1920-01-01"
}
]
}
]
}
|