with Veriff and Pivotal Tracker?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
veriff: {
type: "app",
app: "veriff",
}
},
async run({steps, $}) {
const data = {
"verification": {
"callback": "https://veriff.me",
"vendorData": `${this.veriff.$auth.guid}`
}
}
return await axios($, {
method: "post",
url: `${this.veriff.$auth.api_url}/v1/sessions/`,
headers: {
"content-type": `application/json`,
"x-auth-client": `${this.veriff.$auth.api_key}`,
},
data,
})
},
})
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}`,
},
})
},
})