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 any of the specified SendGrid events is received
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Allows you to create a new contact list. See the docs here
Allows you to delete all email addresses on your blocks list. 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 Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})