Convert - CDA to FHIR (R4)
POST /convert/v1/cdatofhirr4
This operation converts a CDA document into a FHIR R4 bundle.
The input is a single CDA document for a single patient. Supported CDA formats/versions are:
- C-CDA R1.1/R2.1
- HITSP C32 CDAs
The output is a FHIR R4 Bundle containing the data parsed from the input, along with an OperationOutcome resource detailing the results (including warnings or errors) of the conversion process. See Output FHIR R4 Bundles for details.
Query Parameters
The input is XML, so be sure to specify content-type: application/xml
in your request header.
You can specify either accept: application/json
or accept: application/xml
in your request header to get a response in either JSON or XML format.
Example
CDA documents and FHIR Bundles are verbose, so this just shows a small sample to illustrate how the data is structured. For a more complete example, try out the API in the Developer Portal Sandbox.
For example, a patient
node in the CDA XML:
Sample Input
would be converted to a Patient
resource in the FHIR bundle:
Sample Output
For details on the output fields, refer to the FHIR Specification.