with signNow and Google Slides?
Emit new event when all signers have filled in and signed the document. See the documentation
Emit new event when a document has been updated. See the documentation
Creates a new document copy out of a template. See the documentation
Create a new page element in a slide. See the documentation
Adds values to fields that the signers can later edit when they receive the document for signature. See the documentation
Create a blank presentation or duplicate an existing presentation. See the docs here
import { axios } from "@pipedream/platform" export default defineComponent({ props: { signnow: { type: "app", app: "signnow", } }, async run({steps, $}) { return await axios($, { url: `https://api.signnow.com/user`, headers: { Authorization: `Bearer ${this.signnow.$auth.oauth_access_token}`, }, }) }, }) 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}`, }, }) }, })