---
title: "GET /forms/{slug_or_id}/partial-submissions"
method: GET
path: "/forms/{slug_or_id}/partial-submissions"
tags: ["Partial Submissions"]
---

# GET /forms/{slug_or_id}/partial-submissions

`GET /forms/{slug_or_id}/partial-submissions`

This endpoint returns a list of partial submissions for a form matching the requested parameters. This feature is available as part of the [Standard API](https://paperform.co/pricing/).

## Path parameters

- `slug_or_id` string, required

## Query parameters

- `limit` integer
- `skip` integer
- `after_id` string
- `before_id` string
- `before_date` string, date-time
- `after_date` string, date-time
- `sort` 'ASC' | 'DESC'

## Response `200`

Successfully returned a list of partial submissions

- object
  - `status` 'ok'
  - `results` object
    - `partial-submissions` PartialSubmission[]
      - `id` string, uuid — The unique identifier of the Partial Submission.
      - `form_id` string, uuid — The id of the Form for the Partial Submission.
      - `data` SubmissionData — The `data` object stores the answers from the form. Each value is stored against it's key. Note that custom keys are not used here.
        - `KEY` union
          - string
          - number
          - union[]
            - union
              - …
          - object
          - boolean
      - `last_answered` string, nullable
      - `submitted_at` string, date-string, nullable — If the partial submission was submitted, this will be set to a formatted date-time string in your account timezone indicating the time the submission was made.
      - `updated_at` string — A formatted date-time string in your account timezone indicating the last time the partial submission was updated.
      - `created_at` string — A formatted date-time string in your account timezone indicating the time the partial submission was created.
      - `account_timezone` string — The configured timezone for your account.
      - `submitted_at_utc` string, date-time — A formatted date-time string in UTC indicating the time the form was created.
      - `created_at_utc` string, date-time — A formatted date-time string in UTC indicating the time the form was created.
      - `updated_at_utc` string, date-time — A formatted date-time string in UTC indicating the time the form was created.
  - `total` integer — The total number of items.
  - `has_more` boolean — Whether there are more items.
  - `limit` integer — The limit of items per page.
  - `skip` integer — The number of items to skip.

## Other responses

- `400` — Invalid Request
- `401` — Unauthorized
- `403` — Not Permitted
- `404` — Not Found
- `422` — Validation Error
- `429` — Too Many Requests
- `5XX` — Unexpected Error

---

[API](https://skmtc.dev/paperform/apis/paperform-api.md) · [All operations](https://skmtc.dev/paperform/apis/paperform-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/paperform/paperform-api/revisions/dc1e62b7063d/schema)
