Skip to main content

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

MedplumRequestOptions

(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 the International Patient Summary Implementation Guide for full details.

See the Patient summary operation for full details.