Phone Number
A phone number input with a country code dropdown selector. Validates phone number format based on the selected country.
Configuration
| Field | Description |
|---|---|
| Question text | The label (e.g., "Phone number", "Mobile") |
| Country selector | Dropdown of all countries with dial codes |
| Default country | Pre-selected country code |
| Required | Whether it must be filled |
| Placeholder | Hint text |
How it works
- Respondent selects their country from the dropdown (or it's pre-set)
- The dial code auto-fills (e.g., +1 for US, +91 for India, +44 for UK)
- They type their phone number
- Format validation checks the number matches the country's phone format
Country-specific validation
The field validates against each country's phone number rules:
- US/Canada (+1): 10 digits
- UK (+44): 10-11 digits
- India (+91): 10 digits
- Australia (+61): 9 digits
- And 200+ other countries
Tip
If you don't need country-level validation, use a Short Answer field with a simple numeric regex instead. The Phone Number field is best when you need properly formatted international numbers.
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.