Skip to content
Survey123 Web Designer
Survey123 Web Designer interface showing the main dashboard with survey creation options, question builder, and preview panel for creating online surveys.

What is Survey123 Web Designer?

The Survey123 Web Designer is a browser-based tool for creating, sharing, and completing surveys. You can design forms, collect data, and analyze results without installing any software. All survey data is stored securely in ArcGIS and integrates with other mapping and analysis tools.

You use the Web Designer to:

  • Create surveys: Build forms using a visual interface with drag-and-drop tools
  • Collect data: Gather responses through web browsers on phones, tablets, and computers
  • Add smart logic: Show or hide questions based on previous answers
  • Validate data: Ensure responses meet your requirements
  • Export results: Download data as Excel, CSV, or access through programming interfaces
  • Connect to maps: Use survey data in ArcGIS maps and dashboards

How to create a survey with Web Designer

To create a survey with the Web Designer, you access the browser-based interface at survey123.arcgis.com and use the visual form builder to design, configure, and publish your survey. The Web Designer provides drag-and-drop tools, real-time preview, and built-in templates for efficient survey creation.

The general steps are:

  1. Access the Web Designer: Navigate to survey123.arcgis.com and sign in with your ArcGIS account.
  2. Create a new survey: Start with a template or blank survey and provide a name and description.
  3. Design your survey: Add questions, configure logic, and customize appearance using the visual interface.
  4. Configure settings: Set permissions, enable attachments, and customize the survey theme.
  5. Publish and distribute: Publish the survey to generate a shareable URL and QR code for data collection.

Web Designer interface

The Web Designer provides a visual interface for creating surveys without coding. You can access it through your web browser and use drag-and-drop tools to build forms.

Key interface components:

  • Question library: Drag-and-drop question types (text, multiple choice, number, date, location, etc.)
  • Design panel: Configure question properties, validation rules, and appearance
  • Preview panel: Test your survey in real-time as you build it
  • Settings panel: Configure permissions, themes, and advanced options

Survey creation workflow

To create a survey, you follow this workflow:

  1. Start new survey: Click "New Survey" and choose from templates or start blank
  2. Add questions: Use the question library to add different question types
  3. Configure logic: Set up conditional logic to show/hide questions based on responses
  4. Customize appearance: Apply themes, colors, and branding
  5. Test and preview: Use the preview panel to test all functionality
  6. Publish: Make the survey live and get sharing options

Web Designer access

To access the Web Designer, navigate to the Survey123 website:

Use dark colors for code blocksCopy
1
https://survey123.arcgis.com

Survey configuration options

When creating a survey with the Web Designer, you can configure various options:

Basic settings:

  • Survey name and description
  • Question types and properties
  • Required field validation
  • Conditional logic and branching

Advanced settings:

  • Permissions and sharing options
  • Theme customization and branding
  • Attachment and media options
  • Webhook and integration settings

Question types available:

  • Text input (single line, multiple lines)
  • Multiple choice (single select, multi-select)
  • Number input with validation
  • Date and time pickers
  • Location capture (GPS coordinates)
  • File and image uploads
  • Rating scales and sliders

Code examples

Retrieve survey responses

Surveys created with Survey123 store data in hosted feature layers in ArcGIS Online or ArcGIS Enterprise. The code below shows how to retrieve survey responses programmatically.

ArcGIS API for PythonArcGIS API for PythonArcGIS Maps SDK for JavaScriptArcGIS REST JS
Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Get all responses from a published survey
import requests

# Replace with your actual survey URL
survey_url = "https://services.arcgis.com/your-org/arcgis/rest/services/your-survey/FeatureServer/0/query"

# Query parameters
params = {
    "where": "1=1",  # Get all records
    "outFields": "*",  # Get all fields
    "f": "json"  # Return JSON format
}

# Make the request
response = requests.post(survey_url, json=params)

# Check if successful
if response.status_code == 200:
    data = response.json()
    print(f"Found {len(data['features'])} responses")
    for feature in data['features']:
        print(feature['attributes'])
else:
    print(f"Error: {response.status_code}")

Tutorials

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.