v1

latestOpenAPI 3.0.22026-07-146168117.0 KB
Partial Submissions

This endpoint returns a specific partial submission by ID. This feature is available as part of the Standard API.

get/forms/{slug_or_id}/partial-submissions/{id}

Path parameters

slug_or_idstring required

The form's slug, custom slug or ID.

idstring uuid required

The id of the record to get.

Response

Successfully returned a single partial submission that matched the provided ID

status'ok'

Example response

{
  "results": {
    "partial-submission": {
      "id": "5d40fdaf174b4c0007043072",
      "form_id": "5d40fdaf174b4c0007043072",
      "submitted_at": "2019-04-14T09:00:00.000Z",
      "updated_at": "2019-04-14T09:00:00.000Z",
      "created_at": "2019-04-14T09:00:00.000Z",
      "account_timezone": "America/New_York",
      "submitted_at_utc": "2019-04-14T09:00:00.000Z",
      "created_at_utc": "2019-04-14T09:00:00.000Z",
      "updated_at_utc": "2019-04-14T09:00:00.000Z"
    }
  }
}