Gorgias is the ecommerce helpdesk that turns your customer service into a profit center.
Emit new event when a ticket message is created. See the documentation
Emit new event when a ticket is updated. See the documentation
Gorgias is a helpdesk platform that centralizes customer interactions and automates common support tasks. Utilizing the Gorgias API on Pipedream allows you to streamline customer service processes by creating automated workflows. With these integrations, you can sync customer data, manage tickets, automate responses, and track support metrics, effectively turning Gorgias into an engine for customer support automation.
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`,
},
})
},
})
AskYourPDF API allows you to extract text and data from PDF files programmatically. On Pipedream, leverage this API to automate workflows involving PDF data extraction, such as parsing invoices, extracting data for reports, or importing information into a database. With Pipedream's ability to integrate with various apps, you can create workflows that trigger on specific events and handle extracted PDF data with custom logic and actions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
askyourpdf: {
type: "app",
app: "askyourpdf",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.askyourpdf.com/v1/api/documents`,
headers: {
"x-api-key": `${this.askyourpdf.$auth.api_key}`,
},
})
},
})