core.medplumclient.readpatientsummary
Home > @medplum/core > MedplumClient > readPatientSummary
MedplumClient.readPatientSummary() method
Executes the Patient "summary" operation for a patient.
Signature:
readPatientSummary(id: string, options?: MedplumRequestOptions): ReadablePromise<Bundle>;
Parameters
Parameter | Type | Description |
---|---|---|
id | string | The Patient ID. |
options | (Optional) Optional fetch options. |
Returns:
ReadablePromise<Bundle>
A patient summary bundle, organized into the patient summary sections.
Example
Example:
const bundle = await medplum.readPatientSummary('123');
console.log(bundle);
See International Patient Summary Implementation Guide: https://build.fhir.org/ig/HL7/fhir-ips/index.html
See Patient summary operation: https://build.fhir.org/ig/HL7/fhir-ips/OperationDefinition-summary.html