with Widgetform and FullEnrich?
Emit new event when a form submission is received. See the documentation
Retrieves the 10 most recent submissions. See the documentation
Check if the FullEnrich API key is valid. See the documentation
Starts the enrichment process for a specified contact. See the documentation
Provides the current balance of credits available in your workspace. See the documentation
Get the enrichment result for a specified contact. See the documentation
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fullenrich: {
type: "app",
app: "fullenrich",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.fullenrich.com/api/v1/account/credits`,
headers: {
Authorization: `Bearer ${this.fullenrich.$auth.api_key}`,
},
})
},
})