LiveAgent

LiveAgent is a web-based live chat and helpdesk software. It covers all support channels: Email, Live Chat, Call Center, Contact forms, Feedback Forms, Knowledge Base, Social networks(Twitter and Facebook) and integrates them into one enviroment.

Integrate the LiveAgent API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Customer from LiveAgent API
LiveAgent + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Customer from LiveAgent API
LiveAgent + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Customer from LiveAgent API
LiveAgent + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Customer from LiveAgent API
LiveAgent + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Customer from LiveAgent API
LiveAgent + Formatting
 
Try it
New Customer from the LiveAgent API

Emit new event on each new customer.

 
Try it
Create Customer with the LiveAgent API

Creates a customer. See docs here

 
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

Overview of LiveAgent

The LiveAgent API provides access to a feature-rich helpdesk platform, allowing you to automate customer support tasks, synchronize data with other services, and streamline communication channels. With Pipedream, you can tap into the LiveAgent API to create custom workflows that enhance support operations, trigger actions based on customer interactions, and connect with a myriad of other apps to enrich the support ecosystem. Pipedream's serverless platform makes it simple to set up these automations with minimal coding, using pre-built actions or scripting your own.

Connect LiveAgent

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    liveagent: {
      type: "app",
      app: "liveagent",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.liveagent.$auth.domain}.ladesk.com/api/v3/agents`,
      headers: {
        "apikey": `${this.liveagent.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

Connect Formatting

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