with Domain Group and Woodpecker.co?
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 a new agency is created. See the documentation
Emit new event when an email is sent see the docs here
Emit new event when a new agency listing is created. See the documentation
This action creates/updates a prospect. See the docs here
Creates a new business listing. See the documentation
This action creates/updates a prospect in a campaign. See the docs here
Creates a new commercial listing. See the documentation
This action searches a specific prospect. See the docs here
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}`,
},
})
},
})
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: ``,
},
})
},
})