Demos

Webflow + PROCESIO + Airtable integration

6min
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 step 2 generate the api key from your airtable account procesio step 1 from the credential manager create the connection intended to be used for airtable 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 step 3 in this process we will use the following variables mandatory input variables name email phone notes optional output variables status body 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 { "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 webflow step 1 create your new application/ website from the webflow dashboard step 2 add a form on one of the pages 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