tawk.to

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.

Integrate the tawk.to API with the Formatting API

Setup the tawk.to API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate tawk.to and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with Formatting API on Chat Ended (Instant) from tawk.to API
tawk.to + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Chat Started (Instant) from tawk.to API
tawk.to + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Ticket (Instant) from tawk.to API
tawk.to + Formatting
 
Try it
[Data] Parse JSON with Formatting API on Chat Ended (Instant) from tawk.to API
tawk.to + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Chat Started (Instant) from tawk.to API
tawk.to + Formatting
 
Try it
Chat Ended (Instant) from the tawk.to API

Emit new event when a chat ends, usually after 90-150 seconds of inactivity

 
Try it
New Chat Started (Instant) from the tawk.to API

Emit new event when the first message in a chat is sent by a visitor or agent.

 
Try it
New Ticket (Instant) from the tawk.to API

Emit new event when a new ticket is created.

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string. For more examples on formatting, see the Sugar Date Format documentation.

 
Try it

Overview of tawk.to

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.

Connect tawk.to

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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,
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})