Integrating your Wordpress site with Formidable Forms to Scispot Labsheets through Zapier provides seamless data synchronization and reduces manual entry, keeping different teams in-sync. This guide walks you through creating a Zap in Zapier to pull new records from your Formidable Forms and add them to Scispot Labsheets automatically.
Getting started: prerequisites
Before diving into the setup, here’s what you’ll need:
A WordPress website with Formidable Forms Pro installed and activated.
A Zapier account. If you don’t already have a Zapier account, you’ll need to create one. You can use your own or request a Scispot-owned Zapier account.
At least one form created in Formidable Forms.
A Scispot API key, which enables Zapier to send data into Scispot securely. Generate this from your Scispot account.
Go to Scispot and login
Click on the "Account" button in the navigation bar in the bottom-left corner of your screen. This button is your profile picture.
Click "Personal Tokens" on the left side of the pop-up modal
Click "Generate New Token"
Name your token, select token access, and click "Generate"
Copy the API Key and save it somewhere safe - this token cannot be retrieved once it is generated
At least one Labsheet to send your form data to. You can read about how to create a Labsheet in this article.
Step-by-step guide to setting up the Zap
Step 1: Enable the Zapier add-on in Formidable Forms
Log-in to your WordPress dashboard.
Navigate to Formidable → Add-Ons.
Step 2: Generate an API key
Go to Formidable → Global Settings.
Click on API and enable API access.
Copy the API key; you will need it to connect with Zapier.
Step 3: Create a Zap in Zapier and set the Trigger
Log-in to Zapier and click Create a Zap.
In the Trigger App, search for Formidable Forms.
Choose New Entry as the trigger.
Click Sign in.
Enter your Formidable Forms API key and Wordpress site URL, then click Yes, continue to Formidable Forms.
Select the form you want to integrate and test the trigger to fetch sample data.
Step 4: Set the Zap Action to connect to Scispot
In the Action App, select Webhooks.
Set the Action event as Custom Request, then click Continue.
Set the required configurations:
Set the Method to POST.
Set the URL to
https://cloudlab.scispot.io/labsheets/add-rows
Set Data Pass-Through to False.
Configure the Data field according to the Formidable Forms fields that you want to upload. You can read about how to structure your payload for adding Labsheet rows in our API documentation.
Match the data fields from the form to the corresponding columns existing in your Scispot Labsheet. Use placeholders, such as{{order_id}}
and{{order_type}}
, to populate Scispot’s Labsheet accurately.For example:
{
"labsheet": "Elisa Data",
"rows": [
[ "{{record_id}}",
"{{record_type}}",
"{{quantity}}",
"{{location}}",
"{{date}}" ]
]
}
Add two headers:
An
Authorization
header with a value ofBearer YOUR_SCISPOT_API_KEY
, replacing "YOUR_SCISPOT_API_KEY" with the one you generated in Scispot.A
Content-Type
header with a value ofapplication/json
Test your Zap by clicking the Test step button to ensure that your request configurations are set correctly.
Step 5: Activate the Zap
After verifying that the test was successful, click Publish.
Your integration is now active, and data will automatically transfer between Formidable Forms and the selected Labsheet.
Important notes for setting up your Labsheet and field mapping
Labsheet configuration: Before setting up your Zap, ensure that your Labsheet in Scispot has the exact columns you’ll need to match with your Formidable Forms data fields.
Field mapping accuracy: When mapping each Formidable Forms field to a column in Scispot’s Labsheet, double-check that each field aligns with the correct column in the Labsheet.
Changes to Labsheet structure:
Labsheet name: If you rename your Labsheet in Scispot, you’ll need to update the Labsheet name in the Zapier configuration as well.
Column renaming, deletions or rearrangements: If you rename, delete or rearrange any columns in your Labsheet, you must re-map the fields in Zapier.
Maintaining the Labsheet structure and correct field mapping ensures the data flow from Formidable Forms to Scispot remains accurate, consistent, and reliable.