Front

Customer communication platform

Integrate the Front API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Conversation State Change from Front API
Front + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Conversation Tag from Front API
Front + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Conversation State Change from Front API
Front + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Conversation Tag from Front API
Front + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Conversation State Change from Front API
Front + Formatting
 
Try it
New Conversation State Change from the Front API

Emit new event when a conversation reaches a specific state. See the docs

 
Try it
New Conversation Tag from the Front API

Emit new event when a conversation is tagged with a specific tag or any tag. See the documentation

 
Try it
Import Message with the Front API

Appends a new message into an inbox. See the 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
Receive Custom Messages with the Front API

Receive a custom message in Front. See the docs here.

 
Try it

Overview of Front

The Front API empowers you to automate the handling of your team's email inbox, collaborate on conversations, and streamline communication workflows. By harnessing this API on Pipedream, you can craft custom integrations that trigger actions in Front in response to events, synchronize data across platforms, and augment your team's productivity with automated tasks. This can include creating or updating conversations and contacts, managing tags, or firing off custom automation rules within Front.

Connect Front

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    frontapp: {
      type: "app",
      app: "frontapp",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api2.frontapp.com/me`,
      headers: {
        Authorization: `Bearer ${this.frontapp.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Formatting

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