Google Calendar

With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.

Integrate the Google Calendar API with the APITemplate.io API

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

Account Information with APITemplate.io API on Event Start from Google Calendar API
Google Calendar + APITemplate.io
 
Try it
Create a PDF with APITemplate.io API on Event Start from Google Calendar API
Google Calendar + APITemplate.io
 
Try it
Create an Image with APITemplate.io API on Event Start from Google Calendar API
Google Calendar + APITemplate.io
 
Try it
Delete an Object with APITemplate.io API on Event Start from Google Calendar API
Google Calendar + APITemplate.io
 
Try it
List Generated Objects with APITemplate.io API on Event Start from Google Calendar API
Google Calendar + APITemplate.io
 
Try it
New Event Start from the Google Calendar API

Emit new event when the specified time before the Google Calendar event starts

 
Try it
New Upcoming Event Alert from the Google Calendar API

Emit new event based on a time interval before an upcoming event in the calendar. This source uses Pipedream's Task Scheduler. See the documentation for more information and instructions for connecting your Pipedream account.

 
Try it
New Created or Updated Event (Instant) from the Google Calendar API

Emit new event when a Google Calendar events is created or updated (does not emit cancelled events)

 
Try it
New Event Created from the Google Calendar API

Emit new event when a Google Calendar event is created

 
Try it
New Calendar Created from the Google Calendar API

Emit new event when a calendar is created.

 
Try it
Account Information with the APITemplate.io API

Retrieves information about your account. See the docs for more information

 
Try it
Create a PDF with the APITemplate.io API

Create a PDF file with JSON data and your template. See the docs for more information

 
Try it
Create an Image with the APITemplate.io API

Create a JPEG file(along with PNG) with JSON data and your template. See the docs for more information

 
Try it
Delete an Object with the APITemplate.io API

Delete a PDF or an image from CDN and mark the transaction as deleted. See the docs for more information

 
Try it
List Generated Objects with the APITemplate.io API

Retrieves all the generated PDFs and images. See the docs for more information

 
Try it

Overview of Google Calendar

The Google Calendar API lets you dip into the powerhouse of scheduling, allowing for the reading, creation, and manipulation of events and calendars directly from your applications. Through Pipedream, you can seamlessly integrate Google Calendar into a myriad of workflows, automating event management, syncing with other services, setting up custom reminders, or even collating data for reporting. The key here is to streamline your calendar-related processes, ensuring that your time management is as efficient and automated as possible.

Connect Google Calendar

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_calendar: {
      type: "app",
      app: "google_calendar",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/calendar/v3/calendars/primary`,
      headers: {
        Authorization: `Bearer ${this.google_calendar.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of APITemplate.io

APITemplate.io's API unleashes creative automation for generating images or PDFs from predefined templates. It's a powerful tool for creating custom visual content on-the-fly, ideal for marketers, developers, or content creators who need to personalize images or documents at scale. With Pipedream's integration capabilities, you can construct workflows that trigger custom media creation based on specific triggers or actions from a wide range of apps and services.

Connect APITemplate.io

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    apitemplate_io: {
      type: "app",
      app: "apitemplate_io",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://rest.apitemplate.io/v2/list-objects`,
      headers: {
        "X-API-KEY": `${this.apitemplate_io.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

Community Posts

Adding Google Calendar to Your Jamstack - with Pipedream
Adding Google Calendar to Your Jamstack - with Pipedream
Late last year (remember last year - sigh) I wrote up a post demonstrating how to integrate Google Calendar into your static web site: "Adding Google Calendar to your JAMStack". In that article, I describe how I used Google's Node libraries to read my event data. While it was mostly painless, authentication was a bit difficult to figure out. A few days I was thinking about this usecase and realized I could probably do it a lot easier making use of Pipedream. How so? Don't forget that Nelify lets you create a build hook. This is a unique URL that when hit with a POST request will trigger a new build. In theory, all I have to do is create a Pipedream workflow that's fired on new events. How is that done?