> For the complete documentation index, see [llms.txt](https://formdr.gitbook.io/formdr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://formdr.gitbook.io/formdr/documentation/submissions/list-submissions.md).

# List Submissions

## Returns a list of submissions

<mark style="color:blue;">`GET`</mark> `https://api.formdr.com/api/v1/practice/{practiceId}/submissions`

Returns data of a submission, including the prefilledData.

#### Path Parameters

| Name                                         | Type   | Description |
| -------------------------------------------- | ------ | ----------- |
| practiceId<mark style="color:red;">\*</mark> | String | Practice ID |

#### Query Parameters

| Name | Type   | Description    |
| ---- | ------ | -------------- |
| page | Number | Page to return |

{% tabs %}
{% tab title="200: OK Returns submission data of the submission." %}

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

{% endtab %}

{% tab title="401: Unauthorized " %}

```javascript
{
    // Response
}
```

{% endtab %}
{% endtabs %}

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.
