Skip to content

Intake Forms

Intake forms let you collect requests from people who do not have SetGet accounts. Create a custom form, configure the fields you need, and share it via URL or embed it on a website. Submissions flow into the project's intake queue for review, just like in-app submissions.

Why use intake forms?

  • Collect feedback from customers who do not use SetGet.
  • Accept bug reports from beta testers through a structured form instead of unstructured emails.
  • Gather feature requests from a public-facing product page.
  • Standardize submissions with required fields and predefined options.

Creating a form

  1. Open the project.
  2. Go to Project Settings > Intake > Forms.
  3. Click Create Form.
  4. Configure the form settings and fields (see below).
  5. Click Save.

Form settings

SettingDescriptionDefault
Form nameInternal name for identification"Intake Form"
DescriptionShown at the top of the formEmpty
ActiveWhether the form accepts submissionsOn
Require emailSubmitters must provide an email addressOn
Allow attachmentsSubmitters can upload filesOn
Success messageShown after successful submission"Thank you for your submission."
Redirect URLRedirect to a URL after submission (optional)None

Form fields

Every form starts with two default fields that cannot be removed:

FieldTypeRequiredRemovable
TitleShort textYesNo
DescriptionLong textNoNo

Add additional fields from the field palette:

Field typeDescriptionExample use
Short textSingle-line text input"Your name", "Company"
Long textMulti-line text area"Steps to reproduce", "Additional context"
Single selectDropdown with predefined options"Category: Bug / Feature / Question"
Multi-selectMultiple choices from predefined options"Affected platforms: Web / iOS / Android"
EmailEmail input with validation"Your email"
NumberNumeric input"How many users affected?"
DateDate picker"When did this happen?"
AttachmentFile upload"Screenshot"
CheckboxBoolean toggle"I agree to the terms"

Field configuration

Each field can be configured with:

PropertyDescription
LabelThe label shown to the submitter
PlaceholderHint text inside the input
RequiredWhether the field must be filled
Help textAdditional guidance shown below the field
Default valuePre-filled value (optional)
OptionsChoices for select fields

Form URL

Every form gets a unique URL:

https://app.setget.io/forms/{workspace-slug}/{form-id}

Share this URL directly with submitters via email, chat, or documentation.

TIP

Bookmark the form URL in your support team's resources so they can share it with customers quickly.

Embedding a form

Embed the form on an external website using an iframe:

html
<iframe
  src="https://app.setget.io/forms/{workspace-slug}/{form-id}"
  width="100%"
  height="600"
  frameborder="0"
  title="Submit a request"
></iframe>

The embedded form inherits the page's width and scrolls internally. Customize the height to fit your page layout.

Styling

The form uses a clean, minimal design that works on most websites. For advanced styling, the form supports a theme query parameter:

ParameterValuesDescription
themelight, darkForm color scheme
hide_logotrue, falseHide the SetGet branding

Example:

https://app.setget.io/forms/{workspace-slug}/{form-id}?theme=dark&hide_logo=true

Managing submissions

Form submissions appear in the project's Intake tab alongside in-app and email submissions. Each form submission includes:

  • All field values
  • Submitter email (if required)
  • Submission timestamp
  • Form name (as the source)

Reviewers can accept, decline, comment on, and modify form submissions using the same workflow as in-app intake.

Mapping form fields to work item fields

When accepting a form submission, field values are mapped:

Form fieldWork item field
TitleWork item title
DescriptionWork item description
Single select (if mapped to priority)Priority
Other fieldsAppended to description as a formatted list

Configure field-to-work-item mappings in the form settings under Field Mapping.

Form analytics

Track form performance in Project Settings > Intake > Forms > Analytics:

MetricDescription
Total submissionsNumber of submissions received
Submissions this weekWeekly submission count
Acceptance ratePercentage of submissions accepted
Average fields filledHow many optional fields submitters complete
Top sourcesReferrer URLs for embedded forms

Deactivating a form

To stop accepting submissions:

  1. Go to Project Settings > Intake > Forms.
  2. Toggle the form's Active switch off.
  3. The form URL shows a "This form is no longer accepting submissions" message.

Deactivating preserves existing submissions and settings. Reactivate at any time.

Deleting a form

  1. Go to Project Settings > Intake > Forms.
  2. Click Delete next to the form.
  3. Confirm the deletion.

WARNING

Deleting a form permanently removes it and its URL. Existing submissions that have already been accepted as work items are not affected.