Pipeline is the first sales productivity platform to combine sales engagement and Customer Relationship Management (CRM) in one easy-to-use application. We make your sales process as organized and efficient as possible. Email your contacts, qualify leads, and get organized so you can spend more time closing! Over 17,000 salespeople use Pipeline to manage their sales.
Emit new event when a new message is posted in a channel
Emit new event when a new message is received in a chat
Emit new event when a new team is joined by the authenticated user
Creates a new activity associated with an existing person, company, or deal. See the docs here
Create a new channel in Microsoft Teams. See the docs here
Creates a new company in your Pipeline account. See the docs here
The Pipeline API on Pipedream enables you to design robust automations that streamline your sales and engagement processes. By leveraging this API, you can programmatically manage your sales pipeline, track email interactions, and book meetings automatically. Create triggers based on email events, update deals based on customer actions, or sync your sales data with other platforms for deeper analysis. With Pipedream's serverless architecture, you can create workflows that respond in real-time, ensuring your sales team has the freshest information at their fingertips.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pipeline: {
type: "app",
app: "pipeline",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pipelinecrm.com/api/v3/admin/users`,
params: {
api_key: `${this.pipeline.$auth.api_key}`,
},
})
},
})
The Microsoft Teams API on Pipedream allows you to automate tasks, streamline communication, and integrate with other services to enhance the functionality of Teams as a collaboration hub. With this API, you can send messages to channels, orchestrate complex workflows based on Teams events, and manage Teams' settings programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_teams: {
type: "app",
app: "microsoft_teams",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_teams.$auth.oauth_access_token}`,
},
})
},
})