with ProWorkflow and Google Slides?
Emit new event when a new comapny is created. See the docs
Emit new event when a new contact is created. See the docs
Emit new event when a new project is created. See the docs
The ProWorkflow API offers a powerhouse of project management and workflow automation capabilities. With Pipedream, you can leverage these abilities to create custom integrations that boost productivity and streamline operations. By tapping into ProWorkflow's endpoints, you can automate project creation, task assignments, time tracking, and report generation. This API dovetails neatly with other apps on Pipedream, allowing you to create multifaceted workflows that respond in real-time to external triggers, such as emails, form submissions, and calendar events.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { proworkflow: { type: "app", app: "proworkflow", } }, async run({steps, $}) { return await axios($, { url: `https://api.proworkflow.net/me`, headers: { "apikey": `${this.proworkflow.$auth.api_key}`, }, auth: { username: `${this.proworkflow.$auth.username}`, password: `${this.proworkflow.$auth.password}`, }, }) }, }) The Google Slides API allows you to create, read, and edit Google Slides presentations programmatically. With Pipedream's integration, you can automate your slide workflows, enabling dynamic content updates, collaboration enhancements, and streamlined reporting. By plugging into Pipedream's serverless platform, you can trigger slide creation or updates based on events from other apps, process data for presentations, and handle sharing and publishing tasks—all with minimal fuss.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { google_slides: { type: "app", app: "google_slides", } }, async run({steps, $}) { return await axios($, { url: `https://www.googleapis.com/oauth2/v1/userinfo`, headers: { Authorization: `Bearer ${this.google_slides.$auth.oauth_access_token}`, }, }) }, })