Iterate creates simple surveys for startups to get feedback needed to build better products and make better decisions.
The Iterate API, part of the Planview suite, is tailored for sophisticated task and project management, providing endpoints to manipulate boards, cards, and work items in LeanKit. Leveraging the Iterate API on Pipedream unlocks the potential for creating streamlined, serverless automations that can trigger actions across various platforms, react to changes in project status, and synchronize data between tools, all in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
iterate: {
type: "app",
app: "iterate",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://iteratehq.com/api/v1/surveys`,
params: {
access_token: `${this.iterate.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_graph_api_daemon_app: {
type: "app",
app: "microsoft_graph_api_daemon_app",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/users`,
headers: {
Authorization: `Bearer ${this.microsoft_graph_api_daemon_app.$auth.oauth_access_token}`,
},
})
},
})