Leadfeeder is the #1-rated app for Google Analytics and it's the best way to generate free sales leads.
Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status
trigger. More information here
Emit new events when collaborators are added to a repo
Leadfeeder is a powerful API that allows you to build a variety of applications
and tools. Here are some examples of what you can build with the Leadfeeder
API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
leadfeeder: {
type: "app",
app: "leadfeeder",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.leadfeeder.com/accounts`,
headers: {
"Authorization": `Token ${this.leadfeeder.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
github: {
type: "app",
app: "github",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.github.com/user`,
headers: {
Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
"X-GitHub-Api-Version": `2022-11-28`,
},
})
},
})