Zoom Admin

Video conferencing (includes account-level scopes) for Zoom Admins.

Integrate the Zoom Admin API with the Google Docs API

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

Append Image to Document with Google Docs API on Account Created from Zoom Admin API
Zoom Admin + Google Docs
 
Try it
Append Text with Google Docs API on Account Created from Zoom Admin API
Zoom Admin + Google Docs
 
Try it
Create a New Document with Google Docs API on Account Created from Zoom Admin API
Zoom Admin + Google Docs
 
Try it
Create New Document from Text with Google Docs API on Account Created from Zoom Admin API
Zoom Admin + Google Docs
 
Try it
Get Document with Google Docs API on Account Created from Zoom Admin API
Zoom Admin + Google Docs
 
Try it
Account Created from the Zoom Admin API

Emits an event each time a sub-account is created in your master account

 
Try it
Custom Events from the Zoom Admin API

Listen for any events tied to your Zoom account

 
Try it
Meeting Started from the Zoom Admin API

Emits an event each time a meeting starts in your Zoom account

 
Try it
Account Updated from the Zoom Admin API

Emits an event each time your master account or sub-account profile is updated

 
Try it
Recording Completed from the Zoom Admin API

Emits an event each time a recording is ready for viewing in your Zoom account

 
Try it
Append Text with the Google Docs API

Append text to an existing document. See the docs

 
Try it
Create a New Document with the Google Docs API

Create a new, empty document. To add content after creating the document, pass the document ID exported by this step to the Append Text action. See the docs

 
Try it
Append Image to Document with the Google Docs API

Appends an image to the end of a document. See the docs

 
Try it
Create New Document from Text with the Google Docs API

Create a new document from plain text. See the docs

 
Try it
Get Document with the Google Docs API

Get the contents of the latest version of a document. See the docs

 
Try it

Connect Zoom 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: {
    zoom_admin: {
      type: "app",
      app: "zoom_admin",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.zoom.us/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.zoom_admin.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Google Docs

You can use the Google Docs API to build a wide variety of applications,
including:

  • Word processors
  • Spreadsheets
  • Presentation software
  • Database management tools
  • Data visualization tools
  • Document management systems
  • Web scraping tools
  • Text analysis tools
  • And much more!

Connect Google Docs

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_docs: {
      type: "app",
      app: "google_docs",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.google_docs.$auth.oauth_access_token}`,
      },
    })
  },
})