with Sendlane and Widgetform?
Emit new event when a form submission is received. See the documentation
Retrieves the 10 most recent submissions. See the documentation
Sendlane's API taps into the power of email marketing automation allowing you to manage contacts, lists, campaigns, and more programmatically. With the Sendlane API on Pipedream, you can automate workflows that react to various triggers, such as incoming webhooks or scheduled times, to perform actions within Sendlane or other connected services. You can create complex, multi-step workflows that streamline your email marketing efforts, sync data across platforms, and personalize customer interactions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendlane: {
type: "app",
app: "sendlane",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendlane.com/v2/senders`,
headers: {
Authorization: `Bearer ${this.sendlane.$auth.api_token}`,
"Content-Type": `application/json`,
"Accept": `application/json`,
},
})
},
})
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}`,
},
})
},
})