Asana

Work anytime, anywhere with Asana. Keep remote and distributed teams, and your entire organization, focused on their goals, projects, and tasks with Asana.

Integrate the Asana API with the Data Stores API

Setup the Asana API trigger to run a workflow which integrates with the Data Stores API. Pipedream's integration platform allows you to integrate Asana and Data Stores remarkably fast. Free for developers.

Add or update a single record with Data Stores API on Project Added To Workspace (Instant) from Asana API
Asana + Data Stores
 
Try it
Add or update multiple records with Data Stores API on Project Added To Workspace (Instant) from Asana API
Asana + Data Stores
 
Try it
Append to record with Data Stores API on New Project Added To Workspace (Instant) from Asana API
Asana + Data Stores
 
Try it
Delete a single record with Data Stores API on New Project Added To Workspace (Instant) from Asana API
Asana + Data Stores
 
Try it
Delete All Records with Data Stores API on New Project Added To Workspace (Instant) from Asana API
Asana + Data Stores
 
Try it
New Project Added To Workspace (Instant) from the Asana API

Emit new event for each new project added to a workspace.

 
Try it
New Story Added To Project (Instant) from the Asana API

Emit new event for each story added to a project.

 
Try it
New Subtask (Instant) from the Asana API

Emit new event for each subtask added to a project.

 
Try it
New Completed Task (Instant) from the Asana API

Emit new event for each task completed in a project.

 
Try it
New Tag from the Asana API

Emit new event for each tag created in a workspace.

 
Try it
Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
Try it
Append to record with the Data Stores API

Append to a record in your data store Pipedream Data Store. If the record does not exist, a new record will be created in an array format.

 
Try it
Add Task To Section with the Asana API

Add a task to a specific, existing section. This will remove the task from other sections of the project. See the documentation

 
Try it
Check for existence of key with the Data Stores API

Check if a key exists in your Pipedream Data Store or create one if it doesn't exist.

 
Try it

Overview of Asana

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.

Connect Asana

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Overview of Data Stores

Data Stores are a key-value store that allow you to persist state and share data across workflows. You can perform CRUD operations, enabling dynamic data management within your serverless architecture. Use it to save results from API calls, user inputs, or interim data; then read, update, or enrich this data in subsequent steps or workflows. Data Stores simplify stateful logic and cross-workflow communication, making them ideal for tracking process statuses, aggregating metrics, or serving as a simple configuration store.

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})