Google Workspace Admin

Business apps & collaboration tools

Integrate the Google Workspace Admin API with the Twilio SendGrid API

Setup the Google Workspace Admin API trigger to run a workflow which integrates with the Twilio SendGrid API. Pipedream's integration platform allows you to integrate Google Workspace Admin and Twilio SendGrid remarkably fast. Free for developers.

Add Email to Global Suppression with Twilio SendGrid API on New Admin Activity By Application Name from Google Workspace Admin API
Google Workspace Admin + Twilio SendGrid
 
Try it
Add Email to Global Suppression with Twilio SendGrid API on New Admin Activity By User And Application Name from Google Workspace Admin API
Google Workspace Admin + Twilio SendGrid
 
Try it
Add Email to Global Suppression with Twilio SendGrid API on New Admin Activity By User from Google Workspace Admin API
Google Workspace Admin + Twilio SendGrid
 
Try it
Add Email to Global Suppression with Twilio SendGrid API on New Admin Activity from Google Workspace Admin API
Google Workspace Admin + Twilio SendGrid
 
Try it
Add or Update Contact with Twilio SendGrid API on New Admin Activity By Application Name from Google Workspace Admin API
Google Workspace Admin + Twilio SendGrid
 
Try it
New Admin Activity from the Google Workspace Admin API

Emit new admin activities

 
Try it
New Admin Activity By Application Name from the Google Workspace Admin API

Emit new admin activities by selected user

 
Try it
New Admin Activity By User from the Google Workspace Admin API

Emit new admin activities by selected user

 
Try it
New Admin Activity By User And Application Name from the Google Workspace Admin API

Emit new admin activities by selected user and application name

 
Try it
New Contact from the Twilio SendGrid API

Emit new event when a new contact is created

 
Try it
List Activities By Admin with the Google Workspace Admin API

Retrieves a report of all Admin console activities done by a specific administrator. See the docs for more information

 
Try it
Add Email to Global Suppression with the Twilio SendGrid API

Allows you to add one or more email addresses to the global suppressions group. See the docs here

 
Try it
List Activities By Event Name with the Google Workspace Admin API

Retrieves a report of all activities for a specific event name. See the docs for more information

 
Try it
Add or Update Contact with the Twilio SendGrid API

Adds or updates a contact. See the docs here

 
Try it
List Activities By Event Name and Admin with the Google Workspace Admin API

Retrieves a report of all activities for a specific event name and admin. See the docs for more information

 
Try it

Overview of Google Workspace Admin

The Google Workspace Admin API unlocks the power to manage your organization's Google Workspace services. With Pipedream, leverage this API to automate user account management tasks, control devices, manage groups, and gain insights through reports. Simplify complex operational workflows and keep your Workspace environment finely tuned and secure without manual intervention.

Connect Google Workspace Admin

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    google_workspace: {
      type: "app",
      app: "google_workspace",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.google_workspace.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Twilio SendGrid

The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.

Connect Twilio SendGrid

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    sendgrid: {
      type: "app",
      app: "sendgrid",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.sendgrid.com/v3/user/account`,
      headers: {
        Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
      },
    })
  },
})

Community Posts

How Our Family Uses SMS and Smart Picture Frames to Connect During Remote Holidays
How Our Family Uses SMS and Smart Picture Frames to Connect During Remote Holidays
Two days before Thanksgiving, I decided to put together a simple way for our family to share pictures, because we couldn’t be together in person. The idea: smart photo frames that everyone could text pictures to. Here’s how I got it working. tldr; A Pipedream workflow parses SMS messages sent to a Twilio phone number, extracting the pictures and then using SendGrid to email them to the dedicated email addresses used by our Pix-Star photo frames.