with Yanado and Plain?
Yanado turns your Gmail into a powerful collaboration tool, allowing you to manage tasks and projects directly within your inbox. With the Yanado API, you can automate task creation, project management, task updates, and notifications, syncing your email activities with project workflows. Pipedream's platform empowers you to integrate Yanado with a myriad of other apps, enabling seamless automation of complex workflows that bridge your email communications with task management, CRM updates, calendar scheduling, and more.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { yanado: { type: "app", app: "yanado", } }, async run({steps, $}) { return await axios($, { url: `https://api.yanado.com/public-api/users`, headers: { "X-API-Key": `${this.yanado.$auth.api_key}`, }, }) }, })
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, }) }, })