Skip to content

The thankYouPages array defines what respondents see after submitting. A form can have multiple thank-you pages for conditional endings.

Schema

FieldTypeDescription
_idstringUnique identifier for this thank-you page
titlestringInternal title
descstringRich text content shown to the respondent
showSharebooleanShow social sharing buttons
showPublicIdbooleanDisplay the submission's public ID
showPrintButtonbooleanShow a print button
showStatisticbooleanShow response statistics
redirectAfterSubmitbooleanRedirect instead of showing this page
redirectUrlstringURL to redirect to when redirectAfterSubmit is true
isSaveAndReturnbooleanAllow the respondent to save and return later
popupTitlestringTitle for a popup shown after submission
popupTextstringBody text for the popup
popupBtnTextstringButton label for the popup
showThankYouPagebooleanShow this thank-you page
isShowResponseCountbooleanDisplay total response count
isShareRecordsbooleanAllow sharing individual records
statisticTitlestringTitle for the statistics section
statisticDescstringDescription for the statistics section

The desc field uses a simplified markup format (for example, [h2], [b], [p]).

"thankYouPages": [
  {
    "_id": "6a0ef5b03affac35058b05a4",
    "title": "Ending",
    "desc": "[h2 class=\"ql-align-center\"][b]Thank you! [/b][/h2][p class=\"ql-align-center\"]You submitted the form successfully.[/p]",
    "showShare": false,
    "showPublicId": false,
    "showPrintButton": false,
    "showStatistic": false,
    "redirectAfterSubmit": false,
    "redirectUrl": "",
    "isSaveAndReturn": false,
    "popupTitle": "",
    "popupText": "",
    "popupBtnText": "",
    "showThankYouPage": true,
    "isShowResponseCount": false,
    "isShareRecords": false,
    "statisticTitle": "",
    "statisticDesc": ""
  }
]