Gorgias

Gorgias is the ecommerce helpdesk that turns your customer service into a profit center.

Integrate the Gorgias API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Events from Gorgias API
Gorgias + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Ticket from Gorgias API
Gorgias + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Ticket Message from Gorgias API
Gorgias + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Updated Ticket from Gorgias API
Gorgias + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Events from Gorgias API
Gorgias + Formatting
 
Try it
New Events from the Gorgias API

Emit new Gorgias event. See the docs

 
Try it
New Ticket from the Gorgias API

Emit new event when a ticket is created. See the documentation

 
Try it
New Ticket Message from the Gorgias API

Emit new event when a ticket message is created. See the documentation

 
Try it
New Updated Ticket from the Gorgias API

Emit new event when a ticket is updated. See the documentation

 
Try it
Create Customer with the Gorgias API

Create a new customer. See the docs

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

Convert an object to a JSON format string

 
Try it
Create Ticket with the Gorgias API

Create a new ticket. See the docs

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
List Tickets with the Gorgias API

List all tickets. See the docs

 
Try it

Overview of Gorgias

With the Gorgias API, you can build integrations that allow your customers to:

  • Login to your app using their Gorgias account
  • Connect their Gorgias account to your app
  • View and manage their Gorgias account settings
  • Edit their Gorgias profile
  • Access their Gorgias contact list
  • Send and receive Gorgias messages
  • Perform Gorgias searches
  • View and manage their Gorgias calendar
  • Receive real-time updates from Gorgias

Connect Gorgias

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: {
    gorgias_oauth: {
      type: "app",
      app: "gorgias_oauth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.gorgias_oauth.$auth.domain}.gorgias.com/api/users/0`,
      headers: {
        Authorization: `Bearer ${this.gorgias_oauth.$auth.oauth_access_token}`,
        "Accept": `application/json`,
      },
    })
  },
})

Connect Formatting

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