Gorgias

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

Integrate the Gorgias API with the Telegram Bot API

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

Create Chat Invite Link with Telegram Bot API on New Events from Gorgias API
Gorgias + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New Ticket from Gorgias API
Gorgias + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New Ticket Message from Gorgias API
Gorgias + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New Updated Ticket from Gorgias API
Gorgias + Telegram Bot
 
Try it
Create Customer with Gorgias API on New Bot Command Received (Instant) from Telegram Bot API
Telegram Bot + 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 Bot Command Received (Instant) from the Telegram Bot API

Emit new event each time a Telegram Bot command is received.

 
Try it
Create Customer with the Gorgias API

Create a new customer. See the docs

 
Try it
Create Chat Invite Link with the Telegram Bot API

Create an additional invite link for a chat, See the docs for more information

 
Try it
Create Ticket with the Gorgias API

Create a new ticket. See the docs

 
Try it
Delete a Message with the Telegram Bot API

Deletes a message. See the docs for more information

 
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 Telegram Bot

With the Telegram Bot API, you can build bots that perform a variety of tasks,
including:

  • Sending and receiving messages
  • Social networking
  • Content management
  • File sharing
  • Location sharing
  • Bot administration
  • And more!

Connect Telegram Bot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    telegram_bot_api: {
      type: "app",
      app: "telegram_bot_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.telegram.org/bot${this.telegram_bot_api.$auth.token}/getMe`,
    })
  },
})