SupportBee is the easiest way to manage your customer support emails. It is a web-based email support tool that helps (small) businesses organize their customer support emails efficiently
SupportBee's API hooks into its customer support ticketing system, allowing for programmatic ticket management, reporting, and collaboration. With Pipedream, you can leverage this API to automate responses, escalate issues based on keywords, or sync with other tools to streamline your support workflow.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
supportbee: {
type: "app",
app: "supportbee",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.supportbee.$auth.domain}.supportbee.com/users`,
headers: {
"Content-Type": `application/json`,
"Accept": `application/json`,
},
params: {
auth_token: `${this.supportbee.$auth.api_token}`,
},
})
},
})
The SWAPI - Star Wars API is a treasure trove of structured data from the Star Wars universe. It's a go-to resource for fetching information about planets, spaceships, vehicles, people, films, and species from the iconic franchise. Using Pipedream, you can harness this data to create automations and workflows that trigger based on specific criteria from SWAPI. For instance, you could set up a workflow that notifies you when new data is added, enrich customer profiles with their favorite Star Wars characters, or even use it for trivia games by pulling random facts.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
swapi: {
type: "app",
app: "swapi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://swapi.dev/api/films/1/`,
})
},
})