with WebinarGeek and Pingback?
Add a subscriber to segmentation lists by email See the documentation
Remove a subscriber from a segmentation list by email See the documentation
The WebinarGeek API lets you automate and streamline your webinar management tasks. You can create, update, and delete webinars, manage registrations, send out emails, and gather analytics. By harnessing this API within Pipedream, you can construct workflows that react to a variety of triggers, such as new registrant data, and then take actions, like updating a CRM or sending personalized follow-up emails through your email provider.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
webinargeek: {
type: "app",
app: "webinargeek",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.webinargeek.com/api/v2/account`,
headers: {
"Api-Token": `${this.webinargeek.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pingback: {
type: "app",
app: "pingback",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://connect.pingback.com/v1/subscriber/${this.pingback.$auth.email}`,
headers: {
"x-api-key": `${this.pingback.$auth.api_key}`,
},
})
},
})