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
  1. Documentation
  2. Submissions

List Submissions

Paginated list of all the submissions associated with the practice

Returns a list of submissions

GET https://api.formdr.com/api/v1/practice/{practiceId}/submissions

Returns data of a submission, including the prefilledData.

Path Parameters

Name
Type
Description

practiceId*

String

Practice ID

Query Parameters

Name
Type
Description

page

Number

Page to return

{ 
  page: number, 
  totalSubmissions: number, 
  submissions: [
    {
      submissionId: number,
      recordId: number,
      updatedAt: datetime,
      name: string,
      patientName: string,
      email: string
    }
    ...
  ] 
}
{
    // Response
}

Returns a paginated list of 20 submissions, ordered by the date they were added (most recent first). Use the `page` property in query parameters to specify which page you want to receive.

PreviousDelete SubmissionNextFiles

Last updated 1 year ago