with Pivotal Tracker and Claris FileMaker Server - Admin API?
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: {
claris_filemaker_server_admin_api: {
type: "app",
app: "claris_filemaker_server_admin_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.claris_filemaker_server_admin_api.$auth.api_url}/fmi/admin/api/v2/databases`,
headers: {
Authorization: `Bearer ${this.claris_filemaker_server_admin_api.$auth.oauth_access_token}`,
},
})
},
})