This endpoint checks whether the patient’s Medical Record Summary already exists in the PDF and HTML formats.
To create a Medical Record Summary, you need to use the Start Consolidated Data Query.
Path Params
Response
Returns a JSON containing the dates when the Medical Record Summary in PDF and HTML formats were generated.
import { MetriportMedicalApi } from "@metriport/api-sdk";
const metriport = new MetriportMedicalApi("YOUR_API_KEY");
const metriportPatientId = "018a80c4-292a-7486-a223-6dcbc636c44c";
const status = await metriport.getMedicalRecordSummaryStatus(metriportPatientId);
When the HTML summary was created.
When the PDF summary was created.
{
"htmlCreatedAt": "2024-01-18T00:26:54.000Z",
"pdfCreatedAt": "2024-01-18T00:27:16.000Z"
}