with Woodpecker.co and Domain Group?
Emit new event when an agency listing is updated. See the documentation
Emit new event when an email is opened see the docs here
Emit new event when an email is sent see the docs here
Emit new event when a new agency is created. See the documentation
Emit new event when you get an autoreply and you set a date to resume follow-ups see the docs here
This action creates/updates a prospect. See the docs here
This action creates/updates a prospect in a campaign. See the docs here
Creates a new business listing. See the documentation
This action searches a specific prospect. See the docs here
Creates a new commercial listing. See the documentation
The Woodpecker.co API lets you automate your email outreach and follow-up processes. With it, you can manage contacts, campaigns, and emails programmatically, creating a seamless bridge between your email campaigns and your data. This API, integrated with Pipedream, unlocks powerful workflows that can save time, personalize communication at scale, and keep your data in sync across various platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
woodpecker_co: {
type: "app",
app: "woodpecker_co",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.woodpecker.co/rest/v1/campaign_list`,
auth: {
username: `${this.woodpecker_co.$auth.api_key}`,
password: ``,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
domain_group: {
type: "app",
app: "domain_group",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.domain_group.$auth.api_url}/v1/me`,
headers: {
Authorization: `Bearer ${this.domain_group.$auth.oauth_access_token}`,
},
})
},
})