Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event for each new project added to a workspace.
Emit new event when a new version of an npm package is published. See the documentation
Emit new event for each story added to a project.
Add a task to a specific, existing section. This will remove the task from other sections of the project. See the documentation
Creates a new subtask and adds it to the parent task. See the documentation
The Asana API taps into the feature-rich project management platform, allowing you to automate tasks, sync data across apps, and enhance team collaboration. With the Asana API on Pipedream, you can create tasks, update project timelines, and trigger workflows from events within Asana—like new tasks or comments—streamlining your project management processes. Pipedream’s serverless platform empowers you to build complex workflows with minimal overhead, integrating Asana with numerous other services to maximize productivity and reduce manual workload.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
asana: {
type: "app",
app: "asana",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.asana.com/api/1.0/users/me`,
headers: {
Authorization: `Bearer ${this.asana.$auth.oauth_access_token}`,
},
})
},
})