Forms as flexible as code. We help product teams build best-in-class forms.
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}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.