with Pivotal Tracker and INDIEFUNNELS?
Pipedream's integration with the Pivotal Tracker API turns your project management into a powerhouse of automation and connectivity. It allows you to orchestrate workflows that can respond to changes in your projects, stories, and tasks in real-time. For instance, you can sync project updates with other tools, extract metrics for reporting, or even streamline notification systems to keep your entire team in the loop effortlessly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pivotal_tracker: {
type: "app",
app: "pivotal_tracker",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.pivotaltracker.com/services/v5/me`,
headers: {
"X-TrackerToken": `${this.pivotal_tracker.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
indiefunnels: {
type: "app",
app: "indiefunnels",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.indiefunnels.$auth.api_url}/api/site/products`,
headers: {
Authorization: `Bearer ${this.indiefunnels.$auth.api_key}`,
"user-agent ": `@PipedreamHQ/pipedream v0.1`,
},
})
},
})