API Reference

Patient Documents

🚧

Supported Integrations

Forms are currently available for the following integrations: Open Dental, Eaglesoft, Dentrix, Dentrix Ascend, Dentrix Enterprise, Curve, eClinicalWorks, Denticon, athenahealth and ModMed.

Our Patient Documents endpoints allow you to write any PDF file into a health record systems document center. Using these endpoints you can share rich information with providers to inform clinical decision making, automatically collect patient forms, and light up dozens of other use cases.

The Document Center

Inside many of the health record systems we integrate with, practices store files in what is called the document center. This is a collection of files associated with a specific patient. To insert a new file into a patients document center, make a Post request as shown here.

Below is a list of folder locations where patient documents will be inserted into per each supported integration

  • Athena: The "Clinical Documents" section of the patient file
  • Curve: "Forms & Letters" directory of the patient file
  • Denticon: No folders, uploaded as a document to the patient file
  • Dentrix: "Miscellaneous" folder in the Document Center
  • Dentrix Ascend: No folders, uploaded to Document Manager on the patient file
  • Dentrix Enterprise: “Miscellaneous” folder in the Document Center
  • Eaglesoft: "Patient Information" folder in Smart Docs
  • eClinicalWorks: "Healow Chat Documents" folder in patient documents
  • OpenDental: "Enlive User Forms" folder in Images
  • ModMed: "Attachments" section of the patient profile

Patient Documents Response

{
  "code": false,
  "description": "Description",
  "error": [
    "Error"
  ],
  "data": [
    {
      "id": 18,
      "filename": "patient_document.pdf",
      "type": "application/pdf",
      "url": "/documents/18/download",
      "created_at": "2020-06-05T20:16:57.007Z"
    }
  ],
  "count": 2
}