Skip to main content

core.medplumclient.readresource

Home > @medplum/core > MedplumClient > readResource

MedplumClient.readResource() method

Reads a resource by resource type and ID.

Signature:

readResource<K extends ResourceType>(resourceType: K, id: string, options?: MedplumRequestOptions): ReadablePromise<ExtractResource<K>>;

Parameters

ParameterTypeDescription
resourceTypeKThe FHIR resource type.
idstringThe resource ID.
optionsMedplumRequestOptions(Optional) Optional fetch options.

Returns:

ReadablePromise<ExtractResource<K>>

The resource if available.

Example

Example:

const patient = await medplum.readResource('Patient', '123');
console.log(patient);

See the FHIR "read" operation for full details: https://www.hl7.org/fhir/http.html\#read