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
}
...
]
}
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.
Last updated