with Typeflo and Pivotal Tracker?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
typeflo: {
type: "app",
app: "typeflo",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.typeflo.$auth.api_url}/api/headless/content/posts`,
headers: {
Authorization: `Bearer ${this.typeflo.$auth.content_api_key}`,
},
})
},
})
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}`,
},
})
},
})