website logo
🔭Overview
💼Platform Actions
💜Integrations
🧰Custom Actions
🛠️Developer's Guide
Navigate through spaces
⌘K
🔗Integrations
📄Integrations
📗OAuth2 - Google Sheets
📗Gmail - outgoing
📗Gmail - incoming
📗SendSMS
📗SMSO
📗WebFlow
📗Typeform
📗SendGrid
📗GetGist
📗SendinBlue
📗Airtable
📗Yahoo
📗SmartSheet
📗Microsoft Outlook
📗Hubspot
📗Google Sheets
💯Demos
📘Build a Conversational Chatbot with Archbee and Chat GPT
📘Google Forms & PROCESIO
📘Using the Document Designer to send customized emails.
📘Audio to Text using OpenAI's Whisper
📘How to Track read emails?
📘HubSpot contacts analytics
📘How to integrate with JIRA to create tickets
📘How to create an order confirmation process
📘Typeform + PROCESIO +Airtable
📘Webflow + PROCESIO + Airtable integration
📘Sending criteria based alerts to contacts from an excel workbook
📘How to integrate with UIPath robots
📘How to extract e-mail addresses from websites
📘SenseTask OCR integration + notifications
Retry Process that fails
📘FTP to FTP transfer
Articles
Docs powered by
Archbee
Demos

Webflow + PROCESIO + Airtable integration

9min

To automate repetitive departmental tasks in your organization, Procesio can be the glue that holds everything together bringing together functionalities from different platforms to automate your workload and saving your team time.

In this example we will go through the implementation of a tool that could complement your hiring process with the aid of Webflow and Airtable. We will assume that you already have Airtable and Webflow accounts.

We will use Webflow for the creation of a form on your website that will send data regarding the results of the interviewing process and the interviewee contacts into a table in Airtable.

Airtable

Step 1. We will create the table meant to receive the data.

Document image


Step 2. Generate the Api key from your Airtable account.

Document image


Procesio

Step 1. From the Credential manager create the connection intended to be used for Airtable.

Document image


Replace the Test endpoint with a Get endpoint from your project found here. Replace api_key with your api_key, that you can find here.

Step 2. Create the process that will add data to Airtable.

Document image


Step 3. In this process we will use the following variables: 

  • Mandatory input variables:
    • Name
    • Email
    • Phone
    • Notes
  • Optional output variables:
    • status
    • body
Document image


Step 4. For this process we will use the connection we just created with the Post verb and the Create Applicants records API provided by Airtable and add the necessary Query Params and body data. You will use the variables in the body section to send the data dynamically.

Document image

JSON
|
      {
              "records": [
                 {
                    "fields": {
                    "Name": "<%Name%>",
                    "Age": "<%Age%>",
                    "Email": "<%Email%>",
                    "Phone": "<%Phone%>",
                    "Notes": "<%Notes%>"
                } }
                      ], "typecast": true
           }




Step 5. Save and Validate the project.

Step 6. Save the ID of your project for use it in the code you will add to Webflow. You can find it in the Process designer under its name or in the last part of the URL while inside the project

Document image

Document image


Webflow

Step 1. Create your new application/ website from the Webflow dashboard

Step 2. Add a form on one of the pages.

Document image


Step 3. From the left side of your Dashboard select Pages, and click the widget of the page containing your form to Edit page settings.

Step 4. In the Before body tag section you have the option to enter your code to manage the process you just created in Procesio.

  • Here you will store the data entered in the form in variables that will be forwarded to Procesio
  • Authenticate to Procesio
  • Use the API calls provided here, in this case we will use the /launch endpoint.

The snippet of code used in Webflow can be found here.

Updated 10 Apr 2023
Did this page help you?
PREVIOUS
Typeform + PROCESIO +Airtable
NEXT
Sending criteria based alerts to contacts from an excel workbook
Docs powered by
Archbee
TABLE OF CONTENTS
Airtable
Procesio
Webflow
Docs powered by
Archbee