Cloud Contact Center Solutions That Boost 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
Get account information such as balance and tariffs. See the documentation
Create a new channel in Microsoft Teams. See the docs here
Get results for a bulk lookup operation. See the documentation
Perform validation or lookup for a single phone number. See the documentation
The CommPeak API offers a suite of telecommunication services, such as sending SMS messages, making voice calls, and managing phone numbers. In Pipedream, harnessing this API lets you automate communication processes, integrate telephony features into your workflows, and connect them with other apps for enhanced functionality. Think of orchestrating SMS notifications based on certain triggers or automating call logs syncing to a database. CommPeak's capabilities, when combined with Pipedream's serverless platform, can streamline complex communication tasks and create powerful, event-driven automations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
commpeak: {
type: "app",
app: "commpeak",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://hlr.commpeak.com/info`,
headers: {
"Accept": `application/json`,
"Authorization": `${this.commpeak.$auth.api_token}`,
},
})
},
})
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}`,
},
})
},
})