Monitor and chat with the visitors on your website, respond to support tickets, organize contacts and create a help center to empower customers to help themselves.
Emit new event when a chat ends, usually after 90-150 seconds of inactivity
Emit new event when the first message in a chat is sent by a visitor or agent.
Emit new event when a new message is posted in a channel
Create a new channel in Microsoft Teams. See the docs here
Get the list of shift instances for a team. See the documentation
Send a message to a team's channel. See the docs here
The tawk.to API lets you interact with the tawk.to live chat platform programmatically. Using Pipedream, you can connect tawk.to to a variety of other apps and services to automate notifications, sync chat data, and enhance customer support operations. You can trigger workflows on new messages, follow up on conversations, extract chat transcripts, or link chat events to CRM systems, issue trackers, or databases—all in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tawk_to: {
type: "app",
app: "tawk_to",
}
},
async run({steps, $}) {
const data = {
"type": `business`,
}
return await axios($, {
method: "post",
url: `https://api.tawk.to/v1/property.list`,
headers: {
"Content-Type": `application/json`,
},
auth: {
username: `${this.tawk_to.$auth.api_key}`,
password: `f`,
},
data,
})
},
})
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}`,
},
})
},
})