Zip Code
A postal/zip code input that validates against country-specific formats.
Configuration
| Field | Description |
|---|---|
| Country | Which country's zip code format to validate against |
| Placeholder | Hint text (e.g., "10001" for US, "SW1A 1AA" for UK) |
| Required | Must be filled |
Country-specific formats
| Country | Format | Example |
|---|---|---|
| US | 5 digits (or 5+4) | 10001, 10001-1234 |
| UK | Alphanumeric, space | SW1A 1AA |
| Canada | Letter-Number-Letter Number-Letter-Number | K1A 0B1 |
| India | 6 digits | 110001 |
| Germany | 5 digits | 10115 |
Tip
If you need the full address (not just zip code), use the Address field instead. It includes zip code as one of its structured sub-fields.
Configuration tabs
Every field has 5 configuration tabs when clicked on the form canvas:
| Tab | What you configure |
|---|---|
| Design | Question text, description, placeholder, help text |
| Data | Default value, variable name, prefill from URL parameters |
| Settings | Required/optional, read-only, hidden |
| Validations | Format rules, min/max, custom error messages |
| Image | Attach an image alongside the question |
Using in workflows
When this field is part of a form connected to a workflow via the Form Submission trigger, its value is available as a variable:
{{trigger.fieldName}}
Use it in any downstream node: send it in an email, store it in a database, pass it to an AI node for analysis, or use it in an If-Else condition for routing.
Best practices
- Label clearly: write the question as the respondent would think about it, not your internal field name
- Use descriptions: add help text below the question for any field that might be ambiguous
- Set placeholders: show an example of the expected input format
- Mark required fields: only require what you genuinely need; optional fields increase completion rates
- Test on mobile: ensure the field is usable on small screens before publishing
Conditional visibility
This field can be shown or hidden based on previous answers:
- Add an If-Else logic node before this question on the form canvas
- Set the condition based on a previous field's value
- Connect the True branch to this question (shows it)
- Connect the False branch past this question (skips it)
This lets you create dynamic forms where irrelevant questions are hidden.