If you want to access a provider’s note for a patient, you can use this API action to retrieve a list of related documents. Typically, you can use this for:
To use this API action, you must know the patient identifier. If you don’t, you must locate the appropriate identifier first. Learn how to search for a patient with demographics.
You can use this API action with the Redox FHIR® API.
It’s also possible to use the Redox Data Model API for this API action. Talk to a Redoxer to learn about your options if you want to use alternative integration methods.
Your connection's system can return results with their own FHIR® or query-based API.
It's possible that your connection's system can't support a query-based data exchange, but they may still be willing to provide results with a push-based method.
However, we understand that you may not want to store all that data—maybe you don't need all possible results and just want to query for what you want when you need it. If so, you can use this API action via our data on demand service, which stores the connection's data so that you can query from Redox "on demand." Learn more about data on demand.
You can only search and receive signed provider notes from one organization for one patient. You could potentially have notes from different clinical authors for the same patient in the same EHR system, or even the same encounter for the patient. But one retrieve call is for one patient.
If you want to retrieve notes for multiple patients, you must perform this API action for every patient you’re interested in receiving data for.
Documents contain a Logical Observation Identifiers, Names, and Codes (LOINC) to define the type of document.
Sometimes an EHR system uses non-standard codes as well, so you may need to account for EHR-specific codes for document types. Check with your connection to know which document types you should retrieve.
Like the code variation, there’s likely variation in how documents are formatted. Check with your connection to know the format to expect for that document type you’re retrieving. You must configure your system to receive the anticipated format.
Does this API action seem like a good fit for your unique workflow? If so, let your Redox rep know! You can begin development by downloading the relevant resource schema (which is noted in the relevant action step below), and deciding which data elements you need. Then head over to our Quickstart guide to dive right in.
If you're not engaged with our sales team yet, talk to a Redoxer to get started.
The following actions must be completed before attempting the steps below.
We recommend combining this step with the step for retrieving a signed provider note. Here's why you might want to use this combo: If you don't have a specific document ID or enough criteria to narrow your search for a particular note, you could search for a list of potentially related notes instead. You can review the list to see which note is most relevant, then use the document ID to retrieve that note.
For this type of use case, complete this step first, then perform the action step for retrieving a signed provider note.
This table has notes about how to use parameters for this action step specifically, but it's not exhaustive. Refer to the resource schema for more details.
Query parameter | Required for this step | Notes |
---|---|---|
_elements | Y | We recommend using this FHIR® search parameter to hone the search results that are returned. With this parameter, you can specify a comma-separated list of elements you want to retrieve. We recommend entering subject,masterIdentifier,date,type,context so that you have enough data to identify which note you want from the list without cluttering the results with the actual note contents, which you can retrieve with your next search. |
patient.identifier | Y | You must include at least one identifier for the patient that's used by the EHR system you're querying. |
date | Y | This specifies when the DocumentReference resource was created for the signed provider note. You can define a date range using _lt and _gt parameters to narrow down the results to the most likely matches. |
Your search returns a list of notes with their identifiers, date, context, or other fields you requested. Copy the identifier of the note that looks most relevant to you, then complete the step for retrieving a signed provider note.
curl ---location --request POST 'https://api.redoxengine.com/fhir/R4/redox-fhir-sandbox/Development/DocumentReference/_search' \--header 'Content-Type: application/x-www-form-urlencoded' \--header 'Authorization: Bearer $API_TOKEN' \--data-urlencode 'date=gt|2012-09-11T00:00:00.000Z' \--data-urlencode 'patient=Patient/81c2f5eb-f99f-40c4-b504-59483e6148d7' \--data-urlencode '_elements=id,subject,masterIdentifier,date,type,context'
{"id": "89ea252d-e275-4946-925e-3dd99bcf4143","resourceType": "Bundle","type": "searchset","entry": [{"resource": {"resourceType": "DocumentReference","id": "b76ca79e-0432-453b-bfc1-63785a5b4313","type": {"text": "Counseling Note","coding": [{"code": "47042-7","system": "http://loinc.org"}]},"context": {"period": {"end": "2022-05-15T11:00:00.000Z","start": "2022-05-15T10:00:00.000Z"},"encounter": [{"reference": "Encounter/89bbf996-385a-4549-89eb-d6c449a16d19","identifier": {"value": "123000001","system": "urn:redox:redox-fhir-sandbox:VIS","extension": [{"url": "https://fhir.redoxengine.com/StructureDefinition/identifier-origin","valueString": "RedoxAPI"}]}}]},"subject": {"reference": "Patient/81c2f5eb-f99f-40c4-b504-59483e6148d7"},"masterIdentifier": {"value": "urn:uuid:75cb4ad4-e5f9-4cd3-8750-eb0011223300","system": "urn:ietf:rfc:3986"},"date": "2022-05-15T00:00:00.000Z"},"search": {"mode": "match","score": 1}},{"resource": {"resourceType": "DocumentReference","id": "c8d1ac17-0811-4515-a27b-d72ca898e388","type": {"text": "Counseling Note","coding": [{"code": "47042-7","system": "http://loinc.org"}]},"context": {"period": {"end": "2022-05-15T11:00:00.000Z","start": "2022-05-15T10:00:00.000Z"},"encounter": [{"reference": "Encounter/89bbf996-385a-4549-89eb-d6c449a16d19","identifier": {"value": "123000001","system": "urn:redox:redox-fhir-sandbox:VIS","extension": [{"url": "https://fhir.redoxengine.com/StructureDefinition/identifier-origin","valueString": "RedoxAPI"}]}}]},"subject": {"reference": "Patient/81c2f5eb-f99f-40c4-b504-59483e6148d7"},"masterIdentifier": {"value": "urn:uuid:75cb4ad4-e5f9-4cd3-8750-eb0011223300","system": "urn:ietf:rfc:3986"},"date": "2022-05-15T00:00:00.000Z"},"search": {"mode": "match","score": 1}}],"total": 2}
You can complete this step on its own if you already have the document ID for the signed provider note you're searching for. Or, you can complete this as a secondary step after locating the document ID from the step to retrieve a list of document notes within a date range.
This table has notes about how to use parameters for this action step specifically, but it's not exhaustive. Refer to the resource schema for more details.
Query parameter | Required for this step | Notes |
---|---|---|
identifier | Y | This is the master identifier for the signed provider note that you're searching for. |
patient.identifier | Y | You must include at least one identifier for the patient that's used by the EHR system you're querying. |
Your search returns the specific note you're looking for.
curl ---location --request POST 'https://api.redoxengine.com/fhir/R4/redox-fhir-sandbox/Development/DocumentReference/_search' \--header 'Content-Type: application/x-www-form-urlencoded' \--header 'Authorization: Bearer $API_TOKEN' \--data-urlencode 'patient=Patient/81c2f5eb-f99f-40c4-b504-59483e6148d7' \--data-urlencode 'identifier=urn:ietf:rfc:3986|urn:uuid:75cb4ad4-e5f9-4cd3-8750-eb103042999f'
{"id": "9b70f27c-4c03-49f2-8000-041d44cd10c6","type": "searchset","entry": [{"search": {"mode": "match","score": 1},"resource": {"id": "e90d4c17-c77e-47da-8253-413fb11b1458","date": "2012-09-12T00:00:00.000Z","meta": {"lastUpdated": "2022-10-07T16:42:04.470Z"},"type": {"text": "Consult Note","coding": [{"code": "11488-4","system": "http://loinc.org"}]},"author": [{"reference": "Practitioner/dbed0f85-e3cd-47ac-9305-3f629e138832"}],"status": "current","content": [{"attachment": {"data": "UEQ5NGJXd2dkbVZ5YzJsdmJqMGlNUzR3SWlCbGJtTnZaR2x1WnowaVZWUkdMVGdpUHo0OGRHVjRkRDQ4Y0dGeVlUNW9aV3hzYnlCM2IzSnNaRHd2Y0dGeVlUNDhMM1JsZUhRKw==","contentType": "text/xml"}}],"subject": {"reference": "Patient/81c2f5eb-f99f-40c4-b504-59483e6148d7"},"category": [{"coding": [{"code": "CDA","system": "urn:redox:document_kind"}]}],"description": "Community Health and Hospitals: Health Summary","resourceType": "DocumentReference","masterIdentifier": {"value": "urn:uuid:75cb4ad4-e5f9-4cd3-8750-eb103042999f","system": "urn:ietf:rfc:3986"}}},{"search": {"mode": "match","score": 1},"resource": {"id": "a0840dbe-d054-433b-b729-27972f9a2dbc","date": "2012-09-12T00:00:00.000Z","meta": {"lastUpdated": "2022-10-07T16:42:04.479Z"},"type": {"text": "Consult Note","coding": [{"code": "11488-4","system": "http://loinc.org"}]},"author": [{"reference": "Practitioner/dbed0f85-e3cd-47ac-9305-3f629e138832"}],"status": "current","content": [{"attachment": {"data": "eyJIZWFkZXIiOnsiRGlyZWN0QWRkcmVzc0Zyb20iOiJwYXQuZ3Jhbml0ZUBkaXJlY3QucmVkb3hlbmdpbmUuY29tIiwiRGlyZWN0QWRkcmVzc1RvIjoiam9obi5zbGF0ZUBkaXJlY3QucmVkb3hlbmdpbmUuY29tIiwiRG9jdW1lbnQiOnsiQXV0aG9yIjp7IklEIjoiNDM1Njc4OTg3NiIsIklEVHlwZSI6IjIuMTYuODQwLjEuMTEzODgzLjQuNiIsIkZpcnN0TmFtZSI6IlBhdCIsIkxhc3ROYW1lIjoiR3Jhbml0ZSIsIkNyZWRlbnRpYWxzIjpbIk1EIl0sIkFkZHJlc3MiOnsiU3RyZWV0QWRkcmVzcyI6IjEyMyBNYWluIFN0LiIsIkNpdHkiOiJNYWRpc29uIiwiU3RhdGUiOiJXSSIsIlpJUCI6IjUzNzAzIiwiQ291bnR5IjoiRGFuZSIsIkNvdW50cnkiOiJVU0EifSwiRW1haWxBZGRyZXNzZXMiOltdLCJQaG9uZU51bWJlciI6eyJPZmZpY2UiOiIrMTYwODU1NTEyMzQifSwiVHlwZSI6bnVsbCwiTG9jYXRpb24iOnsiVHlwZSI6bnVsbCwiRmFjaWxpdHkiOm51bGwsIkZhY2lsaXR5SWRlbnRpZmllcnMiOltdLCJEZXBhcnRtZW50IjpudWxsLCJEZXBhcnRtZW50SWRlbnRpZmllcnMiOltdLCJSb29tIjpudWxsfX0sIklEIjoiNzVjYjRhZDQtZTVmOS00Y2QzLTg3NTAtZWIxMDMwNDI5OTlmIiwiTG9jYWxlIjoiVVMiLCJUaXRsZSI6IkNvbW11bml0eSBIZWFsdGggYW5kIEhvc3BpdGFsczogSGVhbHRoIFN1bW1hcnkiLCJEYXRlVGltZSI6IjIwMTItMDktMTJUMDA6MDA6MDAuMDAwWiIsIlR5cGUiOiJTaWduZWQgUHJvdmlkZXIgTm90ZSIsIlR5cGVDb2RlIjp7IkNvZGUiOiIxMTQ4OC00IiwiQ29kZVN5c3RlbSI6IjIuMTYuODQwLjEuMTEzODgzLjYuMSIsIkNvZGVTeXN0ZW1OYW1lIjoiTE9JTkMiLCJOYW1lIjoiQ29uc3VsdCBOb3RlIn0sIkNvbmZpZGVudGlhbGl0eSI6eyJDb2RlIjoiTiIsIkNvZGVTeXN0ZW0iOiIyLjE2Ljg0MC4xLjExMzg4My41LjI1IiwiQ29kZVN5c3RlbU5hbWUiOiJDb25maWRlbnRpYWxpdHkiLCJOYW1lIjoibm9ybWFsIn0sIkN1c3RvZGlhbiI6eyJJZGVudGlmaWVycyI6W10sIk5hbWUiOm51bGwsIlR5cGUiOnsiQ29kZSI6bnVsbCwiQ29kZVN5c3RlbSI6bnVsbCwiQ29kZVN5c3RlbU5hbWUiOm51bGwsIk5hbWUiOm51bGwsIkFsdENvZGVzIjpbXX0sIkFkZHJlc3MiOnsiU3RyZWV0QWRkcmVzcyI6bnVsbCwiQ2l0eSI6bnVsbCwiU3RhdGUiOm51bGwsIlpJUCI6bnVsbCwiQ291bnR5IjpudWxsLCJDb3VudHJ5IjpudWxsfSwiVGVsZWNvbSI6W119LCJWaXNpdCI6eyJTdGFydERhdGVUaW1lIjpudWxsLCJFbmREYXRlVGltZSI6bnVsbCwiUmVhc29uIjpudWxsLCJWaXNpdE51bWJlciI6bnVsbCwiVHlwZSI6eyJDb2RlIjpudWxsLCJDb2RlU3lzdGVtIjpudWxsLCJDb2RlU3lzdGVtTmFtZSI6bnVsbCwiTmFtZSI6bnVsbCwiQWx0Q29kZXMiOltdfSwiTG9jYXRpb24iOnsiVHlwZSI6bnVsbCwiRmFjaWxpdHkiOm51bGwsIkZhY2lsaXR5SWRlbnRpZmllcnMiOltdLCJEZXBhcnRtZW50IjpudWxsLCJEZXBhcnRtZW50SWRlbnRpZmllcnMiOltdLCJSb29tIjpudWxsfSwiRGlzY2hhcmdlRGlzcG9zaXRpb24iOnsiQ29kZSI6bnVsbCwiQ29kZVN5c3RlbSI6bnVsbCwiQ29kZVN5c3RlbU5hbWUiOm51bGwsIk5hbWUiOm51bGwsIkFsdENvZGVzIjpbXX19fSwiUGF0aWVudCI6eyJJZGVudGlmaWVycyI6W3siSUQiOiJreUhHQURudlgzeGJrVTRWOWF5YXFoIiwiSURUeXBlIjoiTVIiLCJUeXBlIjpudWxsfV0sIkRlbW9ncmFwaGljcyI6eyJGaXJzdE5hbWUiOm51bGwsIk1pZGRsZU5hbWUiOm51bGwsIkxhc3ROYW1lIjpudWxsLCJET0IiOm51bGwsIlNTTiI6bnVsbCwiU2V4IjpudWxsLCJBZGRyZXNzIjp7IlN0cmVldEFkZHJlc3MiOm51bGwsIkNpdHkiOm51bGwsIlN0YXRlIjpudWxsLCJDb3VudHkiOm51bGwsIkNvdW50cnkiOm51bGwsIlpJUCI6bnVsbH0sIlBob25lTnVtYmVyIjp7IkhvbWUiOm51bGwsIk1vYmlsZSI6bnVsbH0sIkVtYWlsQWRkcmVzc2VzIjpbXSwiTGFuZ3VhZ2UiOm51bGwsIlJhY2UiOm51bGwsIlJhY2VDb2RlcyI6W10sIkV0aG5pY2l0eSI6bnVsbCwiRXRobmljR3JvdXBDb2RlcyI6W10sIlJlbGlnaW9uIjpudWxsLCJNYXJpdGFsU3RhdHVzIjpudWxsLCJJc0RlY2Vhc2VkIjpudWxsLCJEZWF0aERhdGVUaW1lIjpudWxsfSwiT3JnYW5pemF0aW9uIjp7IklkZW50aWZpZXJzIjpbXSwiTmFtZSI6bnVsbCwiVHlwZSI6eyJDb2RlIjpudWxsLCJDb2RlU3lzdGVtIjpudWxsLCJDb2RlU3lzdGVtTmFtZSI6bnVsbCwiTmFtZSI6bnVsbCwiQWx0Q29kZXMiOltdfSwiQWRkcmVzcyI6eyJTdHJlZXRBZGRyZXNzIjpudWxsLCJDaXR5IjpudWxsLCJTdGF0ZSI6bnVsbCwiWklQIjpudWxsLCJDb3VudHkiOm51bGwsIkNvdW50cnkiOm51bGx9LCJUZWxlY29tIjpbXX19LCJQQ1AiOnsiSUQiOm51bGwsIklEVHlwZSI6bnVsbCwiRmlyc3ROYW1lIjpudWxsLCJMYXN0TmFtZSI6bnVsbCwiQ3JlZGVudGlhbHMiOltdLCJBZGRyZXNzIjp7IlN0cmVldEFkZHJlc3MiOm51bGwsIkNpdHkiOm51bGwsIlN0YXRlIjpudWxsLCJaSVAiOm51bGwsIkNvdW50eSI6bnVsbCwiQ291bnRyeSI6bnVsbH0sIkVtYWlsQWRkcmVzc2VzIjpbXSwiUGhvbmVOdW1iZXIiOnsiT2ZmaWNlIjpudWxsfSwiVHlwZSI6bnVsbCwiTG9jYXRpb24iOnsiVHlwZSI6bnVsbCwiRmFjaWxpdHkiOm51bGwsIkZhY2lsaXR5SWRlbnRpZmllcnMiOltdLCJEZXBhcnRtZW50IjpudWxsLCJEZXBhcnRtZW50SWRlbnRpZmllcnMiOltdLCJSb29tIjpudWxsfX19LCJBZHZhbmNlRGlyZWN0aXZlc1RleHQiOm51bGwsIkFkdmFuY2VEaXJlY3RpdmVzIjpbXSwiQWxsZXJneVRleHQiOm51bGwsIkFsbGVyZ2llcyI6W10sIkNhcmVUZWFtcyI6W10sIkVuY291bnRlcnNUZXh0IjpudWxsLCJFbmNvdW50ZXJzIjpbXSwiRmFtaWx5SGlzdG9yeVRleHQiOm51bGwsIkZhbWlseUhpc3RvcnkiOltdLCJGdW5jdGlvbmFsU3RhdHVzVGV4dCI6bnVsbCwiRnVuY3Rpb25hbFN0YXR1cyI6eyJPYnNlcnZhdGlvbnMiOltdLCJTdXBwbGllcyI6W119LCJHb2Fsc1RleHQiOm51bGwsIkdvYWxzIjpbXSwiSGVhbHRoQ29uY2VybnNUZXh0IjpudWxsLCJIZWFsdGhDb25jZXJucyI6W10sIkltbXVuaXphdGlvblRleHQiOm51bGwsIkltbXVuaXphdGlvbnMiOltdLCJJbnN1cmFuY2VzVGV4dCI6bnVsbCwiSW5zdXJhbmNlcyI6W10sIk1lZGljYWxIaXN0b3J5VGV4dCI6bnVsbCwiTWVkaWNhbEVxdWlwbWVudFRleHQiOm51bGwsIk1lZGljYWxFcXVpcG1lbnQiOltdLCJNZWRpY2F0aW9uc1RleHQiOm51bGwsIk1lZGljYXRpb25zIjpbXSwiTm90ZVNlY3Rpb25zIjpbXSwiUGxhbk9mQ2FyZVRleHQiOm51bGwsIlBsYW5PZkNhcmUiOnsiT3JkZXJzIjpbXSwiUHJvY2VkdXJlcyI6W10sIkVuY291bnRlcnMiOltdLCJNZWRpY2F0aW9uQWRtaW5pc3RyYXRpb24iOltdLCJTdXBwbGllcyI6W10sIlNlcnZpY2VzIjpbXX0sIlByb2JsZW1zVGV4dCI6bnVsbCwiUHJvYmxlbXMiOltdLCJQcm9jZWR1cmVzVGV4dCI6bnVsbCwiUHJvY2VkdXJlcyI6eyJPYnNlcnZhdGlvbnMiOltdLCJQcm9jZWR1cmVzIjpbXSwiU2VydmljZXMiOltdfSwiUmVzb2x2ZWRQcm9ibGVtc1RleHQiOm51bGwsIlJlc29sdmVkUHJvYmxlbXMiOltdLCJSZXN1bHRUZXh0IjpudWxsLCJSZXN1bHRzIjpbXSwiU29jaWFsSGlzdG9yeVRleHQiOm51bGwsIlNvY2lhbEhpc3RvcnkiOnsiT2JzZXJ2YXRpb25zIjpbXSwiUHJlZ25hbmN5IjpbXSwiVG9iYWNjb1VzZSI6W119LCJWaXRhbFNpZ25zVGV4dCI6bnVsbCwiVml0YWxTaWducyI6W119","contentType": "application/json"}}],"subject": {"reference": "Patient/81c2f5eb-f99f-40c4-b504-59483e6148d7"},"category": [{"coding": [{"code": "Clinical Summary Patient JSON","system": "urn:redox:document_kind"}]}],"description": "Community Health and Hospitals: Health Summary","resourceType": "DocumentReference","masterIdentifier": {"value": "urn:uuid:75cb4ad4-e5f9-4cd3-8750-eb103042999f","system": "urn:ietf:rfc:3986"}}}],"total": 2,"resourceType": "Bundle"}
If you want a signed provider note from a specific patient encounter but you don't have the document ID, you can retrieve the relevant note with the encounter ID instead. You can do this step independently of the other two.
This table has notes about how to use parameters for this action step specifically, but it's not exhaustive. Refer to the resource schema for more details.
Query parameter | Required for this step | Notes |
---|---|---|
patient.identifier | Y | You must include at least one identifier for the patient that's used by the EHR system you're querying. |
encounter | Y | This is the identifier for the encounter associated with the provider note, which provides context for the signed provider note. |
Your search returns the signed note from the specific encounter.
curl ---location --request POST 'https://api.redoxengine.com/fhir/R4/redox-fhir-sandbox/Development/DocumentReference/_search' \--header 'Content-Type: application/x-www-form-urlencoded' \--header 'Authorization: Bearer $API_TOKEN' \--data-urlencode 'patient=Patient/81c2f5eb-f99f-40c4-b504-59483e6148d7' \--data-urlencode 'encounter-identifier=urn:redox:redox-fhir-sandbox:VIS|123000001'
{"id": "9a463331-85ea-47b6-8a82-cac12846b1cc","resourceType": "Bundle","type": "searchset","entry": [{"resource": {"resourceType": "DocumentReference","id": "c8d1ac17-0811-4515-a27b-d72ca898e388","type": {"text": "Counseling Note","coding": [{"code": "47042-7","system": "http://loinc.org"}]},"content": [{"attachment": {"data": "UEQ5NGJXd2dkbVZ5YzJsdmJqMGlNUzR3SWlCbGJtTnZaR2x1WnowaVZWUkdMVGdpUHo0OGRHVjRkRDQ4Y0dGeVlUNW9aV3hzYnlCM2IzSnNaRHd2Y0dGeVlUNDhMM1JsZUhRKw==","contentType": "text/xml"}}],"status": "current","context": {"period": {"end": "2022-05-15T11:00:00.000Z","start": "2022-05-15T10:00:00.000Z"},"encounter": [{"reference": "Encounter/89bbf996-385a-4549-89eb-d6c449a16d19","identifier": {"value": "123000001","system": "urn:redox:redox-fhir-sandbox:VIS","extension": [{"url": "https://fhir.redoxengine.com/StructureDefinition/identifier-origin","valueString": "RedoxAPI"}]}}]},"masterIdentifier": {"value": "urn:uuid:75cb4ad4-e5f9-4cd3-8750-eb0011223300","system": "urn:ietf:rfc:3986"},"date": "2022-05-15T00:00:00.000Z","subject": {"reference": "Patient/81c2f5eb-f99f-40c4-b504-59483e6148d7"},"category": [{"coding": [{"code": "CDA","system": "urn:redox:document_kind"}]}],"description": "Community Health and Hospitals: Health Summary","meta": {"lastUpdated": "2022-10-12T17:51:36.244Z"},"author": [{"reference": "Practitioner/dbed0f85-e3cd-47ac-9305-3f629e138832"}]},"search": {"mode": "match","score": 1}},{"resource": {"resourceType": "DocumentReference","id": "b76ca79e-0432-453b-bfc1-63785a5b4313","type": {"text": "Counseling Note","coding": [{"code": "47042-7","system": "http://loinc.org"}]},"content": [{"attachment": {"data": "eyJIZWFkZXIiOnsiRGlyZWN0QWRkcmVzc0Zyb20iOiJwYXQuZ3Jhbml0ZUBkaXJlY3QucmVkb3hlbmdpbmUuY29tIiwiRGlyZWN0QWRkcmVzc1RvIjoiam9obi5zbGF0ZUBkaXJlY3QucmVkb3hlbmdpbmUuY29tIiwiRG9jdW1lbnQiOnsiQXV0aG9yIjp7IklEIjoiNDM1Njc4OTg3NiIsIklEVHlwZSI6IjIuMTYuODQwLjEuMTEzODgzLjQuNiIsIkZpcnN0TmFtZSI6IlBhdCIsIkxhc3ROYW1lIjoiR3Jhbml0ZSIsIkNyZWRlbnRpYWxzIjpbIk1EIl0sIkFkZHJlc3MiOnsiU3RyZWV0QWRkcmVzcyI6IjEyMyBNYWluIFN0LiIsIkNpdHkiOiJNYWRpc29uIiwiU3RhdGUiOiJXSSIsIlpJUCI6IjUzNzAzIiwiQ291bnR5IjoiRGFuZSIsIkNvdW50cnkiOiJVU0EifSwiRW1haWxBZGRyZXNzZXMiOltdLCJQaG9uZU51bWJlciI6eyJPZmZpY2UiOiIrMTYwODU1NTEyMzQifSwiVHlwZSI6bnVsbCwiTG9jYXRpb24iOnsiVHlwZSI6bnVsbCwiRmFjaWxpdHkiOm51bGwsIkZhY2lsaXR5SWRlbnRpZmllcnMiOltdLCJEZXBhcnRtZW50IjpudWxsLCJEZXBhcnRtZW50SWRlbnRpZmllcnMiOltdLCJSb29tIjpudWxsfX0sIklEIjoiNzVjYjRhZDQtZTVmOS00Y2QzLTg3NTAtZWIwMDExMjIzMzAwIiwiTG9jYWxlIjoiVVMiLCJUaXRsZSI6IkNvbW11bml0eSBIZWFsdGggYW5kIEhvc3BpdGFsczogSGVhbHRoIFN1bW1hcnkiLCJEYXRlVGltZSI6IjIwMjItMDUtMTVUMDA6MDA6MDAuMDAwWiIsIlR5cGUiOiJDb3Vuc2VsaW5nIE5vdGUiLCJUeXBlQ29kZSI6eyJDb2RlIjoiNDcwNDItNyIsIkNvZGVTeXN0ZW0iOiIyLjE2Ljg0MC4xLjExMzg4My42LjEiLCJDb2RlU3lzdGVtTmFtZSI6IkxPSU5DIiwiTmFtZSI6IkNvdW5zZWxpbmcgTm90ZSJ9LCJDb25maWRlbnRpYWxpdHkiOnsiQ29kZSI6Ik4iLCJDb2RlU3lzdGVtIjoiMi4xNi44NDAuMS4xMTM4ODMuNS4yNSIsIkNvZGVTeXN0ZW1OYW1lIjoiQ29uZmlkZW50aWFsaXR5IiwiTmFtZSI6Im5vcm1hbCJ9LCJDdXN0b2RpYW4iOnsiSWRlbnRpZmllcnMiOltdLCJOYW1lIjpudWxsLCJUeXBlIjp7IkNvZGUiOm51bGwsIkNvZGVTeXN0ZW0iOm51bGwsIkNvZGVTeXN0ZW1OYW1lIjpudWxsLCJOYW1lIjpudWxsLCJBbHRDb2RlcyI6W119LCJBZGRyZXNzIjp7IlN0cmVldEFkZHJlc3MiOm51bGwsIkNpdHkiOm51bGwsIlN0YXRlIjpudWxsLCJaSVAiOm51bGwsIkNvdW50eSI6bnVsbCwiQ291bnRyeSI6bnVsbH0sIlRlbGVjb20iOltdfSwiVmlzaXQiOnsiU3RhcnREYXRlVGltZSI6IjIwMjItMDUtMTVUMTA6MDA6MDAuMDAwWiIsIkVuZERhdGVUaW1lIjoiMjAyMi0wNS0xNVQxMTowMDowMC4wMDBaIiwiUmVhc29uIjoiQW5udWFsIFBoeXNpY2FsIiwiVmlzaXROdW1iZXIiOiIxMjMwMDAwMDEiLCJUeXBlIjp7IkNvZGUiOiI5OTIwMiIsIkNvZGVTeXN0ZW0iOiIyLjE2Ljg0MC4xLjExMzg4My42LjEyIiwiQ29kZVN5c3RlbU5hbWUiOiJDUFQiLCJOYW1lIjoiT2ZmaWNlIHZpc2l0IiwiQWx0Q29kZXMiOltdfSwiTG9jYXRpb24iOnsiVHlwZSI6Ik91dHBhdGllbnQgQ2xpbmljIiwiRmFjaWxpdHkiOiJSSFMgVmlzdGEgT2FrcyBDbGluaWMiLCJGYWNpbGl0eUlkZW50aWZpZXJzIjpbXSwiRGVwYXJ0bWVudCI6IlZpc3RhIE9ha3MgQ2xpbmljIiwiRGVwYXJ0bWVudElkZW50aWZpZXJzIjpbXSwiUm9vbSI6bnVsbH0sIkRpc2NoYXJnZURpc3Bvc2l0aW9uIjp7IkNvZGUiOm51bGwsIkNvZGVTeXN0ZW0iOm51bGwsIkNvZGVTeXN0ZW1OYW1lIjpudWxsLCJOYW1lIjpudWxsLCJBbHRDb2RlcyI6W119fX0sIlBhdGllbnQiOnsiSWRlbnRpZmllcnMiOlt7IklEIjoia3lIR0FEbnZYM3hia1U0VjlheWFxaCIsIklEVHlwZSI6Ik1SIiwiVHlwZSI6bnVsbH1dLCJEZW1vZ3JhcGhpY3MiOnsiRmlyc3ROYW1lIjpudWxsLCJNaWRkbGVOYW1lIjpudWxsLCJMYXN0TmFtZSI6bnVsbCwiRE9CIjpudWxsLCJTU04iOm51bGwsIlNleCI6bnVsbCwiQWRkcmVzcyI6eyJTdHJlZXRBZGRyZXNzIjpudWxsLCJDaXR5IjpudWxsLCJTdGF0ZSI6bnVsbCwiQ291bnR5IjpudWxsLCJDb3VudHJ5IjpudWxsLCJaSVAiOm51bGx9LCJQaG9uZU51bWJlciI6eyJIb21lIjpudWxsLCJNb2JpbGUiOm51bGx9LCJFbWFpbEFkZHJlc3NlcyI6W10sIkxhbmd1YWdlIjpudWxsLCJSYWNlIjpudWxsLCJSYWNlQ29kZXMiOltdLCJFdGhuaWNpdHkiOm51bGwsIkV0aG5pY0dyb3VwQ29kZXMiOltdLCJSZWxpZ2lvbiI6bnVsbCwiTWFyaXRhbFN0YXR1cyI6bnVsbCwiSXNEZWNlYXNlZCI6bnVsbCwiRGVhdGhEYXRlVGltZSI6bnVsbH0sIk9yZ2FuaXphdGlvbiI6eyJJZGVudGlmaWVycyI6W10sIk5hbWUiOm51bGwsIlR5cGUiOnsiQ29kZSI6bnVsbCwiQ29kZVN5c3RlbSI6bnVsbCwiQ29kZVN5c3RlbU5hbWUiOm51bGwsIk5hbWUiOm51bGwsIkFsdENvZGVzIjpbXX0sIkFkZHJlc3MiOnsiU3RyZWV0QWRkcmVzcyI6bnVsbCwiQ2l0eSI6bnVsbCwiU3RhdGUiOm51bGwsIlpJUCI6bnVsbCwiQ291bnR5IjpudWxsLCJDb3VudHJ5IjpudWxsfSwiVGVsZWNvbSI6W119fSwiUENQIjp7IklEIjpudWxsLCJJRFR5cGUiOm51bGwsIkZpcnN0TmFtZSI6bnVsbCwiTGFzdE5hbWUiOm51bGwsIkNyZWRlbnRpYWxzIjpbXSwiQWRkcmVzcyI6eyJTdHJlZXRBZGRyZXNzIjpudWxsLCJDaXR5IjpudWxsLCJTdGF0ZSI6bnVsbCwiWklQIjpudWxsLCJDb3VudHkiOm51bGwsIkNvdW50cnkiOm51bGx9LCJFbWFpbEFkZHJlc3NlcyI6W10sIlBob25lTnVtYmVyIjp7Ik9mZmljZSI6bnVsbH0sIlR5cGUiOm51bGwsIkxvY2F0aW9uIjp7IlR5cGUiOm51bGwsIkZhY2lsaXR5IjpudWxsLCJGYWNpbGl0eUlkZW50aWZpZXJzIjpbXSwiRGVwYXJ0bWVudCI6bnVsbCwiRGVwYXJ0bWVudElkZW50aWZpZXJzIjpbXSwiUm9vbSI6bnVsbH19fSwiQWR2YW5jZURpcmVjdGl2ZXNUZXh0IjpudWxsLCJBZHZhbmNlRGlyZWN0aXZlcyI6W10sIkFsbGVyZ3lUZXh0IjpudWxsLCJBbGxlcmdpZXMiOltdLCJDYXJlVGVhbXMiOltdLCJFbmNvdW50ZXJzVGV4dCI6bnVsbCwiRW5jb3VudGVycyI6W10sIkZhbWlseUhpc3RvcnlUZXh0IjpudWxsLCJGYW1pbHlIaXN0b3J5IjpbXSwiRnVuY3Rpb25hbFN0YXR1c1RleHQiOm51bGwsIkZ1bmN0aW9uYWxTdGF0dXMiOnsiT2JzZXJ2YXRpb25zIjpbXSwiU3VwcGxpZXMiOltdfSwiR29hbHNUZXh0IjpudWxsLCJHb2FscyI6W10sIkhlYWx0aENvbmNlcm5zVGV4dCI6bnVsbCwiSGVhbHRoQ29uY2VybnMiOltdLCJJbW11bml6YXRpb25UZXh0IjpudWxsLCJJbW11bml6YXRpb25zIjpbXSwiSW5zdXJhbmNlc1RleHQiOm51bGwsIkluc3VyYW5jZXMiOltdLCJNZWRpY2FsSGlzdG9yeVRleHQiOm51bGwsIk1lZGljYWxFcXVpcG1lbnRUZXh0IjpudWxsLCJNZWRpY2FsRXF1aXBtZW50IjpbXSwiTWVkaWNhdGlvbnNUZXh0IjpudWxsLCJNZWRpY2F0aW9ucyI6W10sIk5vdGVTZWN0aW9ucyI6W10sIlBsYW5PZkNhcmVUZXh0IjpudWxsLCJQbGFuT2ZDYXJlIjp7Ik9yZGVycyI6W10sIlByb2NlZHVyZXMiOltdLCJFbmNvdW50ZXJzIjpbXSwiTWVkaWNhdGlvbkFkbWluaXN0cmF0aW9uIjpbXSwiU3VwcGxpZXMiOltdLCJTZXJ2aWNlcyI6W119LCJQcm9ibGVtc1RleHQiOm51bGwsIlByb2JsZW1zIjpbXSwiUHJvY2VkdXJlc1RleHQiOm51bGwsIlByb2NlZHVyZXMiOnsiT2JzZXJ2YXRpb25zIjpbXSwiUHJvY2VkdXJlcyI6W10sIlNlcnZpY2VzIjpbXX0sIlJlc29sdmVkUHJvYmxlbXNUZXh0IjpudWxsLCJSZXNvbHZlZFByb2JsZW1zIjpbXSwiUmVzdWx0VGV4dCI6bnVsbCwiUmVzdWx0cyI6W10sIlNvY2lhbEhpc3RvcnlUZXh0IjpudWxsLCJTb2NpYWxIaXN0b3J5Ijp7Ik9ic2VydmF0aW9ucyI6W10sIlByZWduYW5jeSI6W10sIlRvYmFjY29Vc2UiOltdfSwiVml0YWxTaWduc1RleHQiOm51bGwsIlZpdGFsU2lnbnMiOltdfQ==","contentType": "application/json"}}],"status": "current","context": {"period": {"end": "2022-05-15T11:00:00.000Z","start": "2022-05-15T10:00:00.000Z"},"encounter": [{"reference": "Encounter/89bbf996-385a-4549-89eb-d6c449a16d19","identifier": {"value": "123000001","system": "urn:redox:redox-fhir-sandbox:VIS","extension": [{"url": "https://fhir.redoxengine.com/StructureDefinition/identifier-origin","valueString": "RedoxAPI"}]}}]},"masterIdentifier": {"value": "urn:uuid:75cb4ad4-e5f9-4cd3-8750-eb0011223300","system": "urn:ietf:rfc:3986"},"date": "2022-05-15T00:00:00.000Z","subject": {"reference": "Patient/81c2f5eb-f99f-40c4-b504-59483e6148d7"},"category": [{"coding": [{"code": "Clinical Summary Patient JSON","system": "urn:redox:document_kind"}]}],"description": "Community Health and Hospitals: Health Summary","meta": {"lastUpdated": "2022-10-12T17:51:36.484Z"},"author": [{"reference": "Practitioner/dbed0f85-e3cd-47ac-9305-3f629e138832"}]},"search": {"mode": "match","score": 1}}],"total": 2}