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.
Emits an event each time a new contact is created in Zoho CRM
Converts a Lead into a Contact or an Account. See the documentation
Downloads an attachment file from Zoho CRM, saves it in the temporary file system and exports the file path for use in a future step.
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 Zoho CRM API enables the manipulation and retrieval of data within Zoho CRM, a platform for managing your sales, marketing, support, and inventory in a single system. Leveraging this on Pipedream, you can automate tasks like syncing contacts, updating lead statuses, or creating custom CRM operations that trigger actions in other apps. Pipedream's serverless platform allows for real-time data processing, transforming, and orchestrating workflows that respond to events in Zoho CRM with minimal latency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_crm: {
type: "app",
app: "zoho_crm",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.zoho_crm.$auth.api_domain}/crm/v2/users?type=CurrentUser`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_crm.$auth.oauth_access_token}`,
},
})
},
})