Open-source Experience Management. Understand what customers think & feel about your product. Natively integrate user research with minimal dev attention, privacy-first.
Go to siteFormbricks is a flexible tool for building forms that can integrate seamlessly into any website. The API allows for rich interactions with the forms you create, enabling you to automate the gathering and processing of data. By plugging the Formbricks API into Pipedream, you can harness serverless workflows to react to form submissions in real-time, store responses, or trigger a multitude of actions across different platforms. Think of it as empowering your forms to communicate and act on the data without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
formbricks: {
type: "app",
app: "formbricks",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.formbricks.$auth.hostname}/api/v1/management/me`,
headers: {
"x-api-key": `${this.formbricks.$auth.api_key}`,
},
})
},
})
Automated Data Entry into a Database: With the Formbricks API on Pipedream, capture form submissions and automatically insert the data into your SQL database. Each new entry can trigger a Pipedream workflow that validates the content and then passes it to your database, keeping your records up-to-date without manual input.
Dynamic Email Responses Based on Form Input: Create a workflow where the Formbricks API triggers an email sent through SendGrid or another email service provider in Pipedream. Depending on the form's input, tailor the email content to provide personalized responses or follow-up actions, enhancing the user experience.
Slack Notifications for Team Collaboration: Set up a Pipedream workflow that posts a message to a designated Slack channel every time a form submission occurs. This instant notification allows teams to quickly respond to new leads, support requests, or feedback, ensuring nothing falls through the cracks.
Emit new event when a response is created for a survey. See the documentation
Formbricks uses API keys for authentication. When you connect your Formbricks account, Pipedream securely stores the keys so you can easily authenticate to Formbricks APIs in both code and no-code steps.