FormDr
  • Home
  • Getting Started
    • Quick Start
  • Documentation
    • Access Token
      • Using the Refresh Token
    • Get Practices
    • Get Forms List
    • Get Form by ID
    • Find Patient
    • Submissions
      • Get Submission
      • Create Submission
      • Update Submission
      • Delete Submission
      • List Submissions
    • Files
      • Get file
      • Upload file
      • PDF
    • Documents
      • Get Templates
      • Send Template To Sign
      • Get Document Submissions
      • Get Document By Id
      • Download Document PDF
  • Webhook
Powered by GitBook
On this page

Webhook

Whenever a form is submitted, we can send a POST request to a webhook. This is optional, and if you would like it disabled please leave it blank when signing up for the Open API integration.

Sample Body

{
    "practiceId": 10,
    "submissionId": 312,
    "submissionJson": {
        "firstName": "John",
        "lastName": "Wick",
        "allFields": "Will populate here.",
        "babaYaga": "Fortis Fortuna Adiuvat"
    }
}
PreviousDownload Document PDF

Last updated 2 years ago