2. Download full patient record

Calling the Patient/$everything Endpoint

To download the full patient record, you can call the Patient/{patient_id}/$everything endpoint on the b.well FHIR server. This endpoint provides a comprehensive export of all data associated with a patient. Where patient_id is the patient id in the b.well FHIR server.

Endpoint URL: https://fhir-ui.client-sandbox.icanbwell.com/Patient/{patient_id}/$everything

Method: GET

Authentication:

Access to this endpoint typically requires appropriate authentication, such as an OAuth 2.0 token or other secure authentication methods configured for the b.well FHIR server. Please refer to the b.well API documentation for specific authentication requirements and procedures.

Example Request (Conceptual):

GET https://fhir-ui.client-sandbox.icanbwell.com/Patient/12345/$everything
Authorization: Bearer <YOUR_ACCESS_TOKEN>

Response:

The response will be a FHIR Bundle resource containing all the patient's associated data, such as demographics, conditions, observations, medications, and more.

For more details on the FHIR $everything operation, refer to the FHIR Specification.