Phone Number

A phone number input with a country code dropdown selector. Validates phone number format based on the selected country.

Configuration

FieldDescription
Question textThe label (e.g., "Phone number", "Mobile")
Country selectorDropdown of all countries with dial codes
Default countryPre-selected country code
RequiredWhether it must be filled
PlaceholderHint text

How it works

  1. Respondent selects their country from the dropdown (or it's pre-set)
  2. The dial code auto-fills (e.g., +1 for US, +91 for India, +44 for UK)
  3. They type their phone number
  4. 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:

TabWhat you configure
DesignQuestion text, description, placeholder, help text
DataDefault value, variable name, prefill from URL parameters
SettingsRequired/optional, read-only, hidden
ValidationsFormat rules, min/max, custom error messages
ImageAttach 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.