GET
/
forms
/
{formId}
/
submissions
/
{submissionId}
Get submission by ID
curl --request GET \
  --url https://api.fillout.com/v1/api/forms/{formId}/submissions/{submissionId} \
  --header 'Authorization: Bearer <token>'
{
  "submission": {
    "submissionId": "<string>",
    "submissionTime": "2023-11-07T05:31:56Z",
    "lastUpdatedAt": "2023-11-07T05:31:56Z",
    "questions": [
      {
        "id": "<string>",
        "name": "<string>",
        "type": "<string>",
        "value": "<any>"
      }
    ],
    "calculations": [
      {
        "id": "<string>",
        "name": "<string>",
        "type": "number",
        "value": "<string>"
      }
    ],
    "urlParameters": [
      {
        "id": "<string>",
        "name": "<string>",
        "value": "<string>"
      }
    ],
    "scheduling": [
      {
        "id": "<string>",
        "name": "<string>",
        "value": {
          "fullName": "<string>",
          "email": "jsmith@example.com",
          "timezone": "<string>",
          "eventStartTime": "2023-11-07T05:31:56Z",
          "eventEndTime": "2023-11-07T05:31:56Z",
          "eventId": "<string>",
          "eventUrl": "<string>",
          "rescheduleOrCancelUrl": "<string>",
          "userId": 123,
          "scheduledUserEmail": "jsmith@example.com",
          "meetingNotes": "<string>"
        }
      }
    ],
    "payments": [
      {
        "id": "<string>",
        "name": "<string>",
        "value": {
          "paymentId": "<string>",
          "stripeCustomerId": "<string>",
          "stripeCustomerUrl": "<string>",
          "stripePaymentUrl": "<string>",
          "totalAmount": 123,
          "currency": "<string>",
          "email": "jsmith@example.com",
          "discountCode": "<string>",
          "status": "<string>",
          "stripeSubscriptionId": "<string>"
        }
      }
    ],
    "quiz": {
      "score": 123,
      "maxScore": 123
    },
    "login": {
      "email": "jsmith@example.com"
    }
  }
}

Authorizations

Authorization
string
header
required

Enter your Fillout API key. Format: Bearer <api_key>

Path Parameters

formId
string
required

The public identifier of the form

submissionId
string
required

The identifier of the submission

Query Parameters

Pass true to include a link to edit the submission as 'editLink'

Response

200 - application/json

Single submission

The response is of type object.