Iterate creates simple surveys for startups to get feedback needed to build better products and make better decisions.
Run any Bash in a Pipedream step within your workflow. Refer to the Pipedream Bash docs to learn more.
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}`,
},
})
},
})
# $PIPEDREAM_STEPS file contains data from previous steps
cat $PIPEDREAM_STEPS | jq .trigger.context.id
# Write data to $PIPEDREAM_EXPORTS to return it from the step
# Exports must be written as key=value
echo foo=bar >> $PIPEDREAM_EXPORTS