Modern #CustomerSuccess for B2B SaaS. 🚀 Unify your data, understand it deeply, and build powerful automation to drive a world-class customer experience.
Emit new event for each new project added to a workspace.
Emit new event for each story added to a project.
Emit new event for each task completed in a project.
Add a task to a specific, existing section. This will remove the task from other sections of the project. See the documentation
Create a new project in a workspace or team. See the documentation
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.
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: ``,
},
})
},
})
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}`,
},
})
},
})