123 Form Builder is a versatile and innovative form builder used by over 2 million individuals and businesses around the world to automate data collection processes and workflows.
Go to siteThe 123FormBuilder API enables you to automate form and data management tasks, allowing seamless integration with Pipedream's serverless platform. With this API, you can fetch submitted form data in real-time, update form structures, or manage respondents and their submissions programmatically. Harnessing the power of the 123FormBuilder API in Pipedream workflows unlocks the potential for dynamic data collection, efficient data processing, and connectivity with a myriad of other services for an enhanced data-driven ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
a123formbuilder: {
type: "app",
app: "a123formbuilder",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.a123formbuilder.$auth.region}.123formbuilder.com/v2/users`,
params: {
JWT: `${this.a123formbuilder.$auth.oauth_access_token}`,
},
})
},
})
Automated Data Collection and Storage: Trigger a Pipedream workflow whenever a new form submission is received on 123FormBuilder. Process the data within the workflow, and then save it to a Google Sheets document or a database like PostgreSQL for persistent storage and analysis.
Dynamic Respondent Follow-up: After a form submission, use the submission data to send personalized follow-up emails via SendGrid or create a support ticket in Zendesk. This workflow can be tailored to provide different responses based on the submitted data, ensuring a customized interaction with each respondent.
Real-time Notifications and Reporting: Set up a workflow to monitor form submissions and send real-time notifications to a Slack channel or a Discord server. This allows a team to instantly respond to inquiries or orders. Extend this by integrating with a reporting tool like Power BI to generate insights and visualize submission trends.
123FormBuilder uses OAuth authentication. When you connect your 123FormBuilder account, Pipedream will open a popup window where you can sign into 123FormBuilder and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any 123FormBuilder API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://{{custom_fields.region}}.123formbuilder.com/v2/token
?
email={{custom_fields.email}}
&
password={{custom_fields.password}}
content-type: application/x-www-form-urlencoded
accept: application/json
POST
https://{{custom_fields.region}}.123formbuilder.com/v2/token/refresh
?
JWT={{oauth.access_token}}
content-type: application/x-www-form-urlencoded
accept: application/json