with Mailjet and Google Slides?
Add a new unique contact to your global contact list and select its exclusion status. See the docs here
Create a new page element in a slide. See the documentation
Retrieve details for all contact lists - name, subscriber count, creation timestamp, deletion status. See the docs here
Create a blank presentation or duplicate an existing presentation. See the docs here
Mailjet's API offers the power to craft, send, and track emails with finesse. You can wield it to automate email sequences, synchronize email lists with your databases, and send transactional emails with personalized content. It's a playground for creating tailored email campaigns and dissecting campaign performance with rich analytics.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { mailjet: { type: "app", app: "mailjet", } }, async run({steps, $}) { return await axios($, { url: `https://api.mailjet.com/v3/REST/contactslist`, auth: { username: `{{custom_fields.public_key}}`, password: `${this.mailjet.$auth.secret_key}`, }, }) }, })
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}`, }, }) }, })