Gorgias

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

Integrate the Gorgias API with the Mailgun API

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

Create Customer with Gorgias API on New Bounce (Instant) from Mailgun API
Mailgun + Gorgias
 
Try it
Create Customer with Gorgias API on New Click (Instant) from Mailgun API
Mailgun + Gorgias
 
Try it
Create Customer with Gorgias API on New Complaint (Instant) from Mailgun API
Mailgun + Gorgias
 
Try it
Create Customer with Gorgias API on New Delivery (Instant) from Mailgun API
Mailgun + Gorgias
 
Try it
Create Customer with Gorgias API on New Delivery Failure (Instant) from Mailgun API
Mailgun + Gorgias
 
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
New Bounce (Instant) from the Mailgun API

Emit new event when the email recipient could not be reached.

 
Try it
Create Customer with the Gorgias API

Create a new customer. See the docs

 
Try it
Create Mailing List Member with the Mailgun API

Add to an existing mailing list. See the docs here

 
Try it
Create Ticket with the Gorgias API

Create a new ticket. See the docs

 
Try it
Create Route with the Mailgun API

Create a new route. See the docs here

 
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`,
      },
    })
  },
})

Overview of Mailgun

Mailgun allows you to send and receive emails using their API. With Mailgun,
you can build a variety of applications and services that can send or receive
emails. Here are a few examples of what you can build with Mailgun:

  • A simple email service that can send or receive emails
  • An email marketing service that can send mass emails
  • A notification service that can send emails when certain events occur
  • A task management service that can send emails when tasks are due
  • A customer support service that can send or receive emails from customers

Connect Mailgun

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: {
    mailgun: {
      type: "app",
      app: "mailgun",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.mailgun.$auth.region && this.mailgun.$auth.region === "EU" ? "api.eu" : "api"}.mailgun.net/v3/domains`,
      auth: {
        username: `api`,
        password: `${this.mailgun.$auth.api_key}`,
      },
    })
  },
})