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

Query Parameters

{
    id: number,
    formId: number,
    recordId: number,
    patientName: String, //This will match a Find Patient search
    submissionJson: {
        prefilledData: {} //data sent during 'create submission'
    }
}

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