Vitally

Modern #CustomerSuccess for B2B SaaS. 🚀 Unify your data, understand it deeply, and build powerful automation to drive a world-class customer experience.

Integrate the Vitally API with the Asana API

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

Create Task with Asana API on New User Created from Vitally API
Vitally + Asana
 
Try it
Create Message with Vitally API on New Project Added To Workspace (Instant) from Asana API
Asana + Vitally
 
Try it
Create Note with Vitally API on New Project Added To Workspace (Instant) from Asana API
Asana + Vitally
 
Try it
Create Task with Vitally API on New Project Added To Workspace (Instant) from Asana API
Asana + Vitally
 
Try it
Create Message with Vitally API on New Story Added To Project (Instant) from Asana API
Asana + Vitally
 
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 User Created from the Vitally API

Emit new event when a new user is created.

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

Emit new event for each task completed in a project.

 
Try it
Create Message with the Vitally API

Create a new message. See the documentation

 
Try it
Create Note with the Vitally API

Create a new note. See the documentation

 
Try it
Create Task with the Vitally API

Create a new task. See the documentation

 
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
Create Project with the Asana API

Create a new project in a workspace or team. See the documentation

 
Try it

Overview of Vitally

The Vitally API offers a window into customer success operations, enabling you to automate workflows, integrate with other tools, and manipulate customer data programmatically. With Pipedream, you can harness this API to create custom automations that react to events in Vitally, sync data between Vitally and other platforms, or maintain up-to-date customer profiles across your business stack.

Connect Vitally

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    vitally: {
      type: "app",
      app: "vitally",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.vitally.$auth.subdomain}.rest.vitally.io/resources/users`,
      auth: {
        username: `${this.vitally.$auth.api_key}`,
        password: ``,
      },
    })
  },
})

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}`,
      },
    })
  },
})