Post Google Forms Reponse into Insightly CRM

An organization uses Google Forms to capture leads and would like to automatically post the form submissions as open leads into Insightly for pursual by their sales team. This can be easily done with the help of Google Apps Script that gets triggered automatically on form submit.

Open the Google Form, go to Script Editor from the menu and paste the source code. You’ll need to use your own Insightly API key that can be found under “User Settings” (click the profile icon in the upper right corner of your Insightly dashboard).

/*

Google Forms to Insightly
=========================

Written by Amit Agarwal
Website: ctrlq.org
Email: amit@labol.org
Twitter: @labnol

*/

function setupTriggers() {
  var form = FormApp.getActiveForm();
  ScriptApp.newTrigger('ctrlqFormSubmit').forForm(form).onFormSubmit().create();
}

function ctrlqFormSubmit(e) {
  try {
    var i = 0,
      lead = {},
      items = e.response.getItemResponses();

    for (i = 0; i < items.length; i++) {
      var title = items[i].getItem().getTitle();
      var answer = items[i].getResponse().toString();

      switch (title) {
        case 'Company Name':
          lead.ORGANIZATION_NAME = answer;
          break;
        case 'First Name':
          lead.FIRST_NAME = answer;
          break;
        case 'Last Name':
          lead.LAST_NAME = answer;
          break;
        case 'Phone Number':
          lead.PHONE_NUMBER = answer;
          break;
        case 'Email Address':
          lead.EMAIL_ADDRESS = answer;
          break;
      }
    }

    var key = 'ctrlq-org';

    var response = UrlFetchApp.fetch('https://api.insight.ly/v2.2/Leads', {
      method: 'POST',
      payload: JSON.stringify(lead),
      headers: {
        Authorization: 'Basic ' + Utilities.base64Encode(key),
        'Content-Type': 'application/json',
      },
    });

    Logger.log(response.getContentText());
  } catch (error) {
    Logger.log(error.toString());
  }
}

The above Google Form uses standard contact us fields like name, email address and phone number that can be directly mapped to the standard lead in Insightly. If you have others questions in Google Forms, you can use the custom fields to map them into an Insightly lead. For support, email amit@labnol.org

Amit Agarwal is a web geek, solo entrepreneur and loves making things on the Internet. Google recently awarded him the Google Developer Expert and Google Cloud Champion title for his work on Google Workspace and Google Apps Script.

Awards & Recognition

Google Developer Expert

Google Developer Expert

Google awarded us the Developer Expert title recogizing our work in Workspace

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional title for 5 years in a row

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator award for technical expertise

Want to stay up to date?
Sign up for our email newsletter.

We will never send any spam emails. Promise 🫶🏻