Getform allows you to build powerful forms and surveys without code. You can use Getform to collect leads, orders, feedback, and more. Getform makes it easy to build forms and surveys that look great and work well.
Here are some examples of what you can build with Getform:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
getform: {
type: "app",
app: "getform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.getform.io/v1/forms/[FORM_ID]?token=${this.getform.$auth.api_token}`,
})
},
})
Getform uses API keys for authentication. When you connect your Getform account, Pipedream securely stores the keys so you can easily authenticate to Getform APIs in both code and no-code steps.
You can find your form specific API token under your "Form Settings" page on your form dashboard. More in documentation.