with Plain and Waitwhile?
The Plain API provides functionality for automating customer support tasks, such as managing conversations, customers, and team inboxes. Within Pipedream, you can leverage these features to create custom workflows that respond to events from your app or external services, triggering actions in Plain. By integrating the Plain API with Pipedream, you can enhance customer support efficiency, streamline communication, and keep customer data synchronized across platforms.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { plain: { type: "app", app: "plain", } }, async run({steps, $}) { const data = { "query": `query Workspace { workspace(workspaceId: "${this.plain.$auth.workspace_id}") { id publicName } }`, } return await axios($, { method: "post", url: `https://core-api.uk.plain.com/graphql/v1`, headers: { Authorization: `Bearer ${this.plain.$auth.api_key}`, "Content-Type": `application/json`, }, data, }) }, })
Waitwhile is a queue management and scheduling platform that lets you optimize appointments and waitlists, enhancing the customer experience. By leveraging the Waitwhile API on Pipedream, you can automate processes such as updating waitlists, syncing customer data, or triggering notifications when a customer's status changes. This seamless integration can streamline operations for businesses like restaurants, healthcare providers, or service centers where queue management is crucial.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { waitwhile: { type: "app", app: "waitwhile", } }, async run({steps, $}) { return await axios($, { url: `https://api.waitwhile.com/v2/users`, headers: { "apiKey": `${this.waitwhile.$auth.api_key}`, }, }) }, })