Request patient documents

Last updated: Nov 6, 2024
HEALTH TECH VENDOR
IMPLEMENTATION
DEVELOPER

After you successfully search and locate patient records at a given organization, you can request patient documents. There are two options for this step.

Workflow for requesting clinical data
Workflow for requesting clinical data
  1. Use Redox to request the latest patient summary: Typically, the simplest option is to request a generic patient summary directly via Redox. You can perform this type of search with the Redox Data Model API.
  2. Pick your own docs: If you can select documents of interest within your own UI, you can retrieve a full list of available documents and select the specific documents that are of interest. You can perform this type of search with either the Redox Data Model API or FHIR® API.

The returned documents from either option follow a standard format (Consolidated-Clinical Document Architecture, or C-CDA) and include several sections of information related to the patient’s demographics, encounters, medications, diagnoses, allergies, and more. Check out required C-CDA elements.

Option 1: Use Redox to request latest patient summary

Choose this option if you only want CDA documents, and you want to automatically get the most recent CDA for a patient. You receive the data back in a nice Redox-parsed view.

This option relies on the ClinicalSummary data model.

  1. Using Postman or curl, send a ClinicalSummary.PatientQuery request with the relevant metadata, like the patient’s ID and ID Type (from the PatientSearch response) and the organization OID (which goes in the Meta.FacilityCode field).
    Example: Request a patient summary
    bash
    1
    curl \
    2
    -X POST https://api.redoxengine.com/endpoint \
    3
    -H "Content-Type: application/json" \
    4
    -H "Authorization: Bearer {{access token}}" \
    5
    -d '{
    6
    "Meta": {
    7
    "Extensions": {
    8
    "sender-organization-id": {
    9
    "url": "https://api.redoxengine.com/extensions/sender-organization-id",
    10
    # This should be the OID representing you as an organization. If you have multiple levels, it helps to be specific
    11
    # but you can also just use your top-level
    12
    "string": "{{organization_oid}}"
    13
    },
    14
    "user-id": {
    15
    "url": "https://api.redoxengine.com/extensions/user-id",
    16
    # This should change per query and should be a human-readable ID for the user (typically name, not an actual ID)
    17
    "string": "{{user_human_readable_id}}"
    18
    },
    19
    "user-role": {
    20
    "url": "https://api.redoxengine.com/extensions/user-role",
    21
    # Depends on the user above, this is a SNOMED CT code
    22
    # See here: https://www.hl7.org/fhir/valueset-practitioner-role.html
    23
    "coding": {
    24
    "code": "{{user_role}}",
    25
    # This is set for the default code (112247003), but if you have a different code, this should change
    26
    "display": "Medical Doctor"
    27
    }
    28
    },
    29
    "purpose-of-use": {
    30
    "url": "https://api.redoxengine.com/extensions/purpose-of-use",
    31
    # Almost ALWAYS treatment -> depends on the app purpose, but typically this is treatment
    32
    # If it wasn't, other organizations on Carequality likely wouldn't respond
    33
    # To use this, you have to participate in Carequality, which is why you also have to push data
    34
    "coding": {
    35
    "code": "TREATMENT",
    36
    "display": "Treatment"
    37
    }
    38
    }
    39
    },
    40
    "DataModel": "Clinical Summary",
    41
    "EventType": "PatientQuery",
    42
    "Test": true,
    43
    "Destinations": [
    44
    {
    45
    # This value is standard Redox Meta structure and will vary between environments
    46
    # See the Carequality FAQ for Production values -- you're all set for sandbox testing
    47
    "ID": "{{document_query_destination}}"
    48
    }
    49
    ],
    50
    # This value represents what organization on Carequality should be searched.
    51
    # The below is Redox here, but if you are coming from RLS, this should be the Organization OID-type ID from the location result
    52
    # and non-RLS patient search should include the organization OID you found from the organization search
    53
    "FacilityCode": "2.16.840.1.113883.3.6147.458.2"
    54
    },
    55
    "Patient": {
    56
    "Identifiers": [
    57
    {
    58
    # Similar to "FacilityCode" this should come from the RLS location result or from your patient search if non-RLS
    59
    "ID": "{{PatientID}}",
    60
    "IDType": "{{PatientIDType}}"
    61
    }
    62
    ]
    63
    }
    64
    }
  2. If the request is successful, you receive a synchronous ClinicalSummary.PatientQueryResponse with the latest patient summary document (i.e., a snapshot of the patient’s current chart).
    Example: Successful response for a patient summary
    json
    1
    {
    2
    "InsurancesText": "",
    3
    "Insurances": [],
    4
    "Header": {
    5
    "Document": {
    6
    "Visit": {
    7
    "Location": null,
    8
    "VisitNumber": "",
    9
    "EndDateTime": "",
    10
    "StartDateTime": ""
    11
    },
    12
    "Author": {
    13
    "Location": {
    14
    "Facility": "MADISON ANESTHESIOLOGY CONSULTANTS, LLP"
    15
    }
    16
    },
    17
    "ID": "2.16.840.1.113883.19.5^92cce54a-3a9f-634a-4d20-7e566ecc32ab",
    18
    "TypeCode": {
    19
    "AltCodes": [],
    20
    "CodeSystemName": "LOINC",
    21
    "CodeSystem": "2.16.840.1.113883.6.1",
    22
    "Name": "Summarization of episode note",
    23
    "Code": "34133-9"
    24
    },
    25
    "Type": "Summarization of episode note",
    26
    "DateTime": "2020-12-10T17:09:50.000Z",
    27
    "Title": "C-CDA R2.1 Patient Record: Adolfo Kessler",
    28
    "Locale": "US"
    29
    },
    30
    "Patient": {
    31
    "Demographics": {
    32
    "MaritalStatus": "",
    33
    "Religion": "",
    34
    "Ethnicity": "Not hispanic or latino",
    35
    "Race": "White",
    36
    "Address": {
    37
    "County": "",
    38
    "ZIP": "53711",
    39
    "Country": "",
    40
    "State": "Wisconsin",
    41
    "City": "Madison",
    42
    "StreetAddress": "602 Schiller Junction Suite 68"
    43
    },
    44
    "Sex": "Male",
    45
    "SSN": "",
    46
    "DOB": "2002-10-31T17:09:50.000Z",
    47
    "EmailAddresses": [],
    48
    "PhoneNumber": {
    49
    "Mobile": "",
    50
    "Office": "",
    51
    "Home": ""
    52
    },
    53
    "LastName": "Kessler",
    54
    "FirstName": "Adolfo"
    55
    },
    56
    "Identifiers": [
    57
    {
    58
    "IDType": "2.16.840.1.113883.19.5",
    59
    "ID": "j8p2NtTbAL7rTWRRhe7kSK"
    60
    }
    61
    ]
    62
    }
    63
    }

Option 2: Pick your own docs

Choose this option if you want to receive a full list of documents related to the patient. Then, query for any document from the list. You receive the document in both raw XML—which is useful if you have your own document renderer—and in a Redox-parsed view for any data that we can parse.

For this option, use the DocumentQuery and DocumentGet event types of ClinicalSummary; if you're using FHIR®, use the DocumentReference resource. The response returns PDFs or any other documents that are attached to the patient record.

  1. Using Postman or curl, send the ClinicalSummary.DocumentQuery request with the relevant metadata:
    • Patient ID and ID Type: These values are returned in the PatientSearch response.
    • Organization OID: The organization OID is equivalent to the HCID value (from the DocumentQuery response) and should go in the Meta.FacilityCode field of your request.
      Data model example: Search for a document list
      bash
      1
      curl \
      2
      -X POST https://api.redoxengine.com/endpoint \
      3
      -H "Content-Type: application/json" \
      4
      -H "Authorization: Bearer {{access token}}" \
      5
      -d '{
      6
      "Meta": {
      7
      "Extensions": {
      8
      "sender-organization-id": {
      9
      "url": "https://api.redoxengine.com/extensions/sender-organization-id",
      10
      # This should be the OID representing you as an organization. If you have multiple levels, it helps to be specific
      11
      # but you can also just use your top-level
      12
      "string": "{{organization_oid}}"
      13
      },
      14
      "user-id": {
      15
      "url": "https://api.redoxengine.com/extensions/user-id",
      16
      # This should change per query and should be a human-readable ID for the user (typically name, not an actual ID)
      17
      "string": "{{user_human_readable_id}}"
      18
      },
      19
      "user-role": {
      20
      "url": "https://api.redoxengine.com/extensions/user-role",
      21
      # Depends on the user above, this is a SNOMED CT code
      22
      # See here: https://www.hl7.org/fhir/valueset-practitioner-role.html
      23
      "coding": {
      24
      "code": "{{user_role}}",
      25
      # This is set for the default code (112247003), but if you have a different code, this should change
      26
      "display": "Medical Doctor"
      27
      }
      28
      },
      29
      "purpose-of-use": {
      30
      "url": "https://api.redoxengine.com/extensions/purpose-of-use",
      31
      # Almost ALWAYS treatment -> depends on the app purpose, but typically this is treatment
      32
      # If it wasn't, other organizations on Carequality likely wouldn't respond
      33
      # To use this, you have to participate in Carequality, which is why you also have to push data
      34
      "coding": {
      35
      "code": "TREATMENT",
      36
      "display": "Treatment"
      37
      }
      38
      }
      39
      },
      40
      "DataModel": "Clinical Summary",
      41
      "EventType": "DocumentQuery",
      42
      # Remove in production
      43
      "Test": true,
      44
      "Destinations": [
      45
      {
      46
      # This value is standard Redox Meta structure and will vary between environments
      47
      # See the Carequality FAQ for Production values -- you're all set for sandbox testing
      48
      "ID": "{{document_query_destination}}"
      49
      }
      50
      ],
      51
      # This value represents what organization on the network should be searched.
      52
      # The below is Redox here, but if you are coming from RLS, this should be the Organization OID-type ID from the location result
      53
      # and non-RLS patient search should include the organization OID you found from the organization search
      54
      "FacilityCode": "2.16.840.1.113883.3.6147.458.2"
      55
      },
      56
      "Patient": {
      57
      "Identifiers": [
      58
      {
      59
      # Similar to "FacilityCode" this should come from the RLS location result or from your patient search if non-RLS
      60
      "ID": "{{PatientID}}",
      61
      "IDType": "{{PatientIDType}}"
      62
      }
      63
      ]
      64
      }
      65
      }
      FHIR example: Search for a document list
      bash
      1
      curl --location --request POST 'https://testapi.redoxengine.com/fhir/R4/ceq-xca:2.16.840.1.113883.3.6147.458.2/Development/DocumentReference/_search' \
      2
      --header 'Authorization: Bearer <TOKEN>' \
      3
      --header 'x-sender-organization-id: {{your_oid}}' \
      4
      --header 'x-user-id: {{user_human_readable_id}}' \
      5
      --header 'x-user-role: {{user_role}}' \
      6
      --header 'x-purpose-of-use: TREATMENT' \
      7
      --header 'redox-source-id: {{your_source_id_if_multiple}}' \
      8
      --header 'Content-Type: application/x-www-form-urlencoded' \
      9
      --data-urlencode 'patient=681d2103-f883-4334-886b-59358580dcb1^2.16.840.1.113883.3.6147.458.2'
  2. If the request is successful, you receive a synchronous ClinicalSummary.DocumentQueryResponse with a document list with an identifier, type, and date for each document so that you can identify the most relevant documents.
    Data model example: Successful response for a document list
    json
    1
    {
    2
    "Documents": [
    3
    {
    4
    "Author": {
    5
    "Location": {
    6
    "Type": "General Medicine",
    7
    "Department": "Health Encounter Site",
    8
    "Facility": "Cool.io"
    9
    },
    10
    "Type": "",
    11
    "Credentials": [],
    12
    "FirstName": null,
    13
    "LastName": null,
    14
    "IDType": null,
    15
    "ID": null
    16
    },
    17
    "Location": {
    18
    "Department": "Health Encounter Site"
    19
    },
    20
    "Visit": {
    21
    "Type": "Summarization of episode note",
    22
    "EndDateTime": "2020-12-10T17:09:50.000Z",
    23
    "StartDateTime": "2020-12-10T17:09:50.000Z"
    24
    },
    25
    "Type": {
    26
    "Name": "Summarization of episode note",
    27
    "Codeset": "2.16.840.1.113883.6.1",
    28
    "Code": "34133-9"
    29
    },
    30
    "FileType": "text/xml",
    31
    "HCID": "urn:oid:2.16.840.1.113883.3.6147.458.8080.2.2.1",
    32
    "RepositoryUniqueId": "2.16.840.1.113883.3.6147.458.8080.2.2.1",
    33
    "DateTime": null,
    34
    "Locale": "en-US",
    35
    "Title": "Summarization of episode note",
    36
    "ID": "Mi4xNi44NDAuMS4xMTM4ODMuMTkuNV45MmNjZTU0YS0zYTlmLTYzNGEtNGQyMC03ZTU2NmVjYzMyYWI=^Mi4xNi44NDAuMS4xMTM4ODMuMy42MTQ3LjQ1OC44MDgwLjIuMi4x^dXJuOm9pZDoyLjE2Ljg0MC4xLjExMzg4My4zLjYxNDcuNDU4LjgwODAuMi4yLjE="
    37
    }
    38
    ],
    39
    "Patient": {
    40
    "Identifiers": [
    41
    {
    42
    "ID": "45e5fadd-0496-4e48-be26-a06d78f8e950",
    43
    "IDType": "2.16.840.1.113883.3.6147.458.2"
    44
    }
    45
    ]
    46
    },
    47
    "Meta": {
    48
    "DataModel": "Clinical Summary",
    49
    "EventType": "DocumentQuery",
    50
    "Message": {
    51
    "ID": 12720346889
    52
    },
    53
    "Source": {
    54
    "ID": "d9c19117-7778-47fd-9f55-b3bccc4055f8"
    55
    },
    56
    "Destinations": [
    57
    {
    58
    "ID": "ec745338-8849-43ad-a7ce-4bc5bf1d8b89",
    59
    "Name": "Carequality Sandbox - XCA"
    60
    }
    61
    ],
    62
    "Logs": [
    63
    {
    64
    "ID": "f30fbf24-5e3f-4503-b899-1fc247f0f996",
    65
    "AttemptID": "2a215fde-a385-4f5a-bfb1-28a14e7a9605"
    66
    }
    67
    ]
    68
    }
    69
    }
    FHIR example: Successful response for a document list
    json
    1
    {
    2
    "body": {
    3
    "resourceType": "Bundle",
    4
    "type": "searchset",
    5
    "total": 2,
    6
    "entry": [
    7
    {
    8
    "resource": {
    9
    "resourceType": "DocumentReference",
    10
    "id": "NzVjYjRhZDQtZTVmOS00Y2QzLTg3NTAtZWI1MDUwNTIxZTBk^Mi4xNi44NDAuMS4xMTM4ODMuMy42MTQ3LjQ1OC41NTUxLjIuMi4x^dXJuOm9pZDoyLjE2Ljg0MC4xLjExMzg4My4zLjYxNDcuNDU4LjU1NTEuMi4yLjE=",
    11
    "masterIdentifier": {
    12
    "system": "urn:uuid:2e82c1f6-a085-4c72-9da3-8640a32e42ab",
    13
    "value": "75cb4ad4-e5f9-4cd3-8750-eb5050521e0d"
    14
    },
    15
    "status": "current",
    16
    "category": {
    17
    "coding": [
    18
    {
    19
    "system": "2.16.840.1.113883.6.1",
    20
    "code": "18842-5"
    21
    }
    22
    ],
    23
    "text": "Progress Note"
    24
    },
    25
    "subject": {
    26
    "type": "Patient",
    27
    "identifier": [
    28
    {
    29
    "system": "2.16.840.1.113883.3.6147.458.2",
    30
    "value": "681d2103-f883-4334-886b-59358580dcb1"
    31
    }
    32
    ]
    33
    },
    34
    "description": "Progress Note",
    35
    "content": [
    36
    {
    37
    "attachment": {
    38
    "contentType": "text/xml",
    39
    "language": "en-US",
    40
    "title": "Progress Note"
    41
    },
    42
    "format": "urn:ihe:iti:xds:2017:mimeTypeSufficient"
    43
    }
    44
    ],
    45
    "context": {
    46
    "encounter": [
    47
    {
    48
    "status": "planned",
    49
    "facilityType": {
    50
    "text": "General Medicine"
    51
    },
    52
    "practiceSetting": {
    53
    "text": "General Medicine"
    54
    }
    55
    }
    56
    ]
    57
    }
    58
    },
    59
    "search": {
    60
    "mode": "match"
    61
    },
    62
    "fullUrl": "urn:uuid:7635b589-3335-4280-98fb-335194cb5d4a"
    63
    },
    64
    {
    65
    "resource": {
    66
    "resourceType": "DocumentReference",
    67
    "id": "dXJuOnJlZG94OkNhcmVxdWFsaXR5VGVzdC01NTUxLVNhbmRib3gtUHJvZHVjdGlvbjptZWRpYV5iMTY5MjY3Yy0xMGM5LTRmZTMtOTFhZS05Y2tmNTcwM2U5MGw=^Mi4xNi44NDAuMS4xMTM4ODMuMy42MTQ3LjQ1OC41NTUxLjIuMi4x^dXJuOm9pZDoyLjE2Ljg0MC4xLjExMzg4My4zLjYxNDcuNDU4LjU1NTEuMi4yLjE=",
    68
    "masterIdentifier": {
    69
    "system": "urn:uuid:2e82c1f6-a085-4c72-9da3-8640a32e42ab",
    70
    "value": "urn:redox:CarequalityTest-5551-Sandbox-Production:media^b169267c-10c9-4fe3-91ae-9ckf5703e90l"
    71
    },
    72
    "status": "current",
    73
    "category": {
    74
    "coding": [
    75
    {
    76
    "system": "2.16.840.1.113883.6.1",
    77
    "code": "34133-9"
    78
    }
    79
    ],
    80
    "text": "Empty File"
    81
    },
    82
    "subject": {
    83
    "type": "Patient",
    84
    "identifier": [
    85
    {
    86
    "system": "2.16.840.1.113883.3.6147.458.2",
    87
    "value": "681d2103-f883-4334-886b-59358580dcb1"
    88
    }
    89
    ]
    90
    },
    91
    "description": "Empty File",
    92
    "content": [
    93
    {
    94
    "attachment": {
    95
    "contentType": "application/pdf",
    96
    "language": "en-US",
    97
    "title": "Empty File"
    98
    },
    99
    "format": "urn:ihe:iti:xds:2017:mimeTypeSufficient"
    100
    }
    101
    ],
    102
    "context": {
    103
    "encounter": [
    104
    {
    105
    "status": "planned",
    106
    "facilityType": {
    107
    "text": "General Medicine"
    108
    },
    109
    "practiceSetting": {
    110
    "text": "General Medicine"
    111
    }
    112
    }
    113
    ]
    114
    }
    115
    },
    116
    "search": {
    117
    "mode": "match"
    118
    },
    119
    "fullUrl": "urn:uuid:ce97b6ec-c42b-4048-87b7-d659fceaf75c"
    120
    }
    121
    ]
    122
    }
    123
    }
  3. Using Postman or curl, send the ClinicalSummary.DocumentGet request with the relevant metadata, like the document ID and type (from the response in the previous steps) and the organization OID (which goes in the Meta.FacilityCode field).
    Data model example: Retrieve a document
    bash
    1
    curl \
    2
    -X POST https://api.redoxengine.com/endpoint \
    3
    -H "Content-Type: application/json" \
    4
    -H "Authorization: Bearer {{access token}}" \
    5
    -d '{
    6
    "Meta": {
    7
    "Extensions": {
    8
    "sender-organization-id": {
    9
    "url": "https://api.redoxengine.com/extensions/sender-organization-id",
    10
    # This should be the OID representing you as an organization. If you have multiple levels, it helps to be specific
    11
    # but you can also just use your top-level
    12
    "string": "{{organization_oid}}"
    13
    },
    14
    "user-id": {
    15
    "url": "https://api.redoxengine.com/extensions/user-id",
    16
    # This should change per query and should be a human-readable ID for the user (typically name, not an actual ID)
    17
    "string": "{{user_human_readable_id}}"
    18
    },
    19
    "user-role": {
    20
    "url": "https://api.redoxengine.com/extensions/user-role",
    21
    # Depends on the user above, this is a SNOMED CT code
    22
    # See here: https://www.hl7.org/fhir/valueset-practitioner-role.html
    23
    "coding": {
    24
    "code": "{{user_role}}",
    25
    # This is set for the default code (112247003), but if you have a different code, this should change
    26
    "display": "Medical Doctor"
    27
    }
    28
    },
    29
    "purpose-of-use": {
    30
    "url": "https://api.redoxengine.com/extensions/purpose-of-use",
    31
    # Almost ALWAYS treatment -> depends on the app purpose, but typically this is treatment
    32
    # If it wasn't, other organizations on Carequality likely wouldn't respond
    33
    # To use this, you have to participate in Carequality, which is why you also have to push data
    34
    "coding": {
    35
    "code": "TREATMENT",
    36
    "display": "Treatment"
    37
    }
    38
    }
    39
    },
    40
    "DataModel": "Clinical Summary",
    41
    "EventType": "DocumentGet",
    42
    "EventDateTime": "2019-08-02T20:09:22.089Z",
    43
    "Test": true,
    44
    "Destinations": [
    45
    {
    46
    # This value is standard Redox Meta structure and will vary between environments
    47
    # See the Carequality FAQ for Production values -- you're all set for sandbox testing
    48
    "ID": "{{document_query_destination}}"
    49
    }
    50
    ],
    51
    # This value represents what organization on Carequality should be searched.
    52
    # The below is Redox here, but if you are coming from RLS, this should be the Organization OID-type ID from the location result
    53
    # and non-RLS patient search should include the organization OID you found from the organization search
    54
    "FacilityCode": "2.16.840.1.113883.3.6147.458.2"
    55
    },
    56
    "Document": {
    57
    # This value will be the result of the previous document query result
    58
    "ID": "{{DocumentID}}"
    59
    }
    60
    }
    FHIR example: Retrieve a document
    bash
    1
    curl --location --request GET 'https://testapi.redoxengine.com/fhir/R4/ceq-xca:2.16.840.1.113883.3.6147.458.2/Development/DocumentReference/NzVjYjRhZDQtZTVmOS00Y2QzLTg3NTAtZWI1MDUwNTIxZTBk^Mi4xNi44NDAuMS4xMTM4ODMuMy42MTQ3LjQ1OC41NTUxLjIuMi4x^dXJuOm9pZDoyLjE2Ljg0MC4xLjExMzg4My4zLjYxNDcuNDU4LjU1NTEuMi4yLjE=' \
    2
    --header 'Authorization: Bearer <TOKEN>' \
    3
    --header 'x-sender-organization-id: {{your_oid}}' \
    4
    --header 'x-user-id: {{user_human_readable_id}}' \
    5
    --header 'x-user-role: {{user_role}}' \
    6
    --header 'x-purpose-of-use: TREATMENT' \
    7
    --header 'redox-source-id: {{your_source_id_if_multiple}}'
  4. If the request is successful, you receive a synchronous ClinicalSummary.DocumentGetResponse with the relevant document of interest. If using Redox data models, the response includes the raw content in the Data field and the type of content in FileType. If FileType is text/xml, then Data will be UTF-8 text content. We translate the JSON to match the ClinicalSummary.VisitQueryResponse data model (see the response format). Otherwise, it'll be base64-encoded content to support file types like application/pdf. If using FHIR®, the content will always be base64-encoded and parsing is performed. Alternatively, some organizations use the raw data with one of many public libraries to translate the XML into a readable UI.
    Data model example (abbreviated): Successful document retrieval
    json
    1
    "Meta": {
    2
    "DataModel": "Clinical Summary",
    3
    "EventType": "DocumentGet",
    4
    "Message": {
    5
    "ID": 12720346936
    6
    },
    7
    "Source": {
    8
    "ID": "d9c19117-7778-47fd-9f55-b3bccc4055f8"
    9
    },
    10
    "Destinations": [
    11
    {
    12
    "ID": "ec745338-8849-43ad-a7ce-4bc5bf1d8b89",
    13
    "Name": "Carequality Sandbox - XCA"
    14
    }
    15
    ],
    16
    "Logs": [
    17
    {
    18
    "ID": "8ebf45b3-3c60-4d35-8f93-a1b754eded73",
    19
    "AttemptID": "62dc89d4-6d59-418b-95b1-131fae7a721d"
    20
    }
    21
    ]
    22
    },
    23
    "Header": {
    24
    "Document": {
    25
    "Title": "C-CDA R2.1 Patient Record: Adolfo Kessler",
    26
    "Visit": {
    27
    "Location": null,
    28
    "VisitNumber": "",
    29
    "EndDateTime": "",
    30
    "StartDateTime": ""
    31
    },
    32
    "Author": {
    33
    "Location": {
    34
    "Facility": "MADISON ANESTHESIOLOGY CONSULTANTS, LLP"
    35
    }
    36
    },
    37
    "ID": "2.16.840.1.113883.19.5^92cce54a-3a9f-634a-4d20-7e566ecc32ab",
    38
    "TypeCode": {
    39
    "AltCodes": [],
    40
    "CodeSystemName": "LOINC",
    41
    "CodeSystem": "2.16.840.1.113883.6.1",
    42
    "Name": "Summarization of episode note",
    43
    "Code": "34133-9"
    44
    },
    45
    "Type": "Summarization of episode note",
    46
    "DateTime": "2020-12-10T17:09:50.000Z",
    47
    "Locale": "US"
    48
    },
    49
    "Patient": {
    50
    "Demographics": {
    51
    "MaritalStatus": "",
    52
    "Religion": "",
    53
    "Ethnicity": "Not hispanic or latino",
    54
    "Race": "White",
    55
    "Address": {
    56
    "County": "",
    57
    "ZIP": "53711",
    58
    "Country": "",
    59
    "State": "Wisconsin",
    60
    "City": "Madison",
    61
    "StreetAddress": "602 Schiller Junction Suite 68"
    62
    },
    63
    "Sex": "Male",
    64
    "SSN": "",
    65
    "DOB": "2002-10-31T17:09:50.000Z",
    66
    "EmailAddresses": [],
    67
    "PhoneNumber": {
    68
    "Mobile": "",
    69
    "Office": "",
    70
    "Home": ""
    71
    },
    72
    "LastName": "Kessler",
    73
    "FirstName": "Adolfo"
    74
    },
    75
    "Identifiers": [
    76
    {
    77
    "IDType": "2.16.840.1.113883.19.5",
    78
    "ID": "j8p2NtTbAL7rTWRRhe7kSK"
    79
    }
    80
    ]
    81
    }
    82
    },
    83
    "Data": "",
    84
    "FileType": "text/xml",
    85
    ...
    86
    }
    FHIR example: Successful document retrieval
    json
    1
    {
    2
    "body": {
    3
    "content": [
    4
    {
    5
    "attachment": {
    6
    "contentType": "text/xml",
    7
    "data": "PD94bWwgdmVyc2lv...base64 content omitted for brevity"
    8
    }
    9
    }
    10
    ],
    11
    "status": "current",
    12
    "masterIdentifier": {
    13
    "value": "2.16.840.1.113883.3.6147.458.5551.2.2.1^75cb4ad4-e5f9-4cd3-8750-eb5050521e0d",
    14
    "system": "urn:oid:2.16.840.1.113883.3.6147.458.5551.2.2.1"
    15
    },
    16
    "resourceType": "DocumentReference"
    17
    }
    18
    }

Next steps