Feathery is a powerful form builder designed to create polished, dynamic forms with ease. With the Feathery API, you can automate form submissions, synchronize data across platforms, and trigger custom workflows based on user interactions. This seamless integration on Pipedream lets you bridge Feathery forms with countless other services to streamline data collection, lead capture, and user surveys, enhancing the overall efficiency of data-driven processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
feathery: {
type: "app",
app: "feathery",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.feathery.io/api/user/`,
headers: {
"Token": `${this.feathery.$auth.api_key}`,
},
})
},
})
Form Submission to CRM: Automatically create or update contacts in your CRM like Salesforce or HubSpot when a form is submitted on Feathery. This ensures your sales team has the latest lead info at their fingertips.
Survey Data to Analytics Tools: Feed survey responses from Feathery into analytics tools such as Google Sheets or Tableau. Analyze user feedback or poll results in real-time to make data-driven decisions swiftly.
Multi-step Approval Workflows: When a form is submitted, trigger a multi-step approval process. Notify team members on Slack or Microsoft Teams, and use conditional logic to approve or reject submissions, updating the form status on Feathery accordingly.
Feathery uses API keys for authentication. When you connect your Feathery account, Pipedream securely stores the keys so you can easily authenticate to Feathery APIs in both code and no-code steps.
Copy your Feathery admin-level API key to connect Feathery to Pipedream and authenticate access.