Search Docs…

Search Docs…

Reference

Saving to Airtable

Overview

This guide will walk you through integrating your survey results with Airtable using the saveSurveyToAirtablefunction. By following this guide, you can automatically store survey responses in an Airtable database.


Setting Up Your Airtable Base
1. Choose an Existing Base or Create a New One
  • If you already have a base where you want to store survey responses, open it.

  • Otherwise, click “Add a base”“Start from scratch”, and name it (e.g., Survey Responses).

2. Choose or Create a Table
  • If you want to use an existing table, open it and proceed to the next step.

  • If you need a new table, click the ”+” button to create one (default name: Table 1).

Configure Your Columns

Each column should match the question titles in your survey:

  • Column Name: The exact question text (e.g., "How satisfied are you?").

  • Type: Use Single line text for text responses for all response types.

  • Ensure consistency: Column names must match the survey data keys.


Obtaining Required Airtable Credentials
  1. Find Your Base ID
  1. Open your base in Airtable.

  2. Click "Help" (question mark icon) → "API Documentation".

  3. Your Base ID is in the URL (https://airtable.com/{BaseID}/api/docs).

  1. Get Your Table Name
  • The table name is displayed in the Airtable UI (default is Table 1).

  • Rename it if needed.

  1. Obtain Your API Key
  1. Go to Airtable Account Settings.

  2. Under "API", generate an API Key.

  3. Copy and save it securely.


Using saveSurveyToAirtable
let airtableAPIKey = "your_airtable_api_key"
let baseID = "your_base_id"
let tableName = "Survey Responses"

saveSurveyToAirtable(surveyResults: surveyResults, airtableAPIKey: airtableAPIKey, baseID: baseID, tableName: tableName)


Summary
  • Set up an Airtable base with columns matching survey questions.

  • Obtain API credentials (Base ID, Table Name, API Key).

  • Use saveSurveyToAirtable to send responses to Airtable.

🚀 Now, your survey results will automatically populate in Airtable! 🎉