import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
widgetform: {
type: "app",
app: "widgetform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://usewidgetform.com/api/v1/hooks/zapier/user`,
headers: {
"x-api-key": `${this.widgetform.$auth.api_key}`,
},
})
},
})
Emit new event when a form submission is received. See the documentation
Retrieves the 10 most recent submissions. See the documentation
Widgetform uses API keys for authentication. When you connect your Widgetform account, Pipedream securely stores the keys so you can easily authenticate to Widgetform APIs in both code and no-code steps.