Cloudflare (API key)

CDN, DDoS mitigation, Internet security, and DNS services

Integrate the Cloudflare (API key) API with the Google Calendar API

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

Change Development Mode with Cloudflare (API key) API on Event Start from Google Calendar API
Google Calendar + Cloudflare (API key)
 
Try it
Change Zone's SSL Setting with Cloudflare (API key) API on Event Start from Google Calendar API
Google Calendar + Cloudflare (API key)
 
Try it
Create a Certificate with Cloudflare (API key) API on Event Start from Google Calendar API
Google Calendar + Cloudflare (API key)
 
Try it
Create DNS Record with Cloudflare (API key) API on Event Start from Google Calendar API
Google Calendar + Cloudflare (API key)
 
Try it
Create IP Access Rule with Cloudflare (API key) API on Event Start from Google Calendar API
Google Calendar + Cloudflare (API key)
 
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
Change Development Mode with the Cloudflare (API key) API

Development Mode temporarily allows you to enter development mode for your websites if you need to make changes to your site. This will bypass Cloudflare's accelerated cache and slow down your site. See the docs here

 
Try it
Change Zone's SSL Setting with the Cloudflare (API key) API

Choose the appropriate SSL setting for your zone. See the docs here

 
Try it
Create a Certificate with the Cloudflare (API key) API

Creates an Origin CA certificate. See the docs here

 
Try it
Create DNS Record with the Cloudflare (API key) API

Creates a DNS Record given its zone id

 
Try it
Create IP Access Rule with the Cloudflare (API key) API

Creates a new IP Access Rule for an account. The rule will apply to all zones in the account. See the docs here

 
Try it

Overview of Cloudflare (API key)

Cloudflare provides a powerful API that you can use to manage your DNS
settings,Crypto settings, and more.Here are some examples of what you can do
with the Cloudflare API:

  • Manage your DNS settings: You can use the Cloudflare API to manage your DNS
    settings, including creating and updating DNS records.
  • Crypto settings: You can use the Cloudflare API to manage your Crypto
    settings, including enabling and disabling SSL/TLS encryption for your
    website.
  • Firewall rules: You can use the Cloudflare API to manage your firewall rules,
    including creating and updating firewall rules.

Connect Cloudflare (API key)

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: {
    cloudflare_api_key: {
      type: "app",
      app: "cloudflare_api_key",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.cloudflare.com/client/v4/user`,
      headers: {
        "X-Auth-Key": `${this.cloudflare_api_key.$auth.API_Key}`,
        "X-Auth-Email": `${this.cloudflare_api_key.$auth.Email}`,
      },
    })
  },
})

Overview of Google Calendar

The Google Calendar API gives developers access to Google Calendar data,
allowing them to create their own applications that can read, write, and update
calendar data. With the API, users can integrate their own calendar
applications with Google Calendar, giving them the ability to manage their
calendars in one place. The API also provides the ability to search for events
and create new events.

Possible applications that could be built using the Google Calendar API
include:

  • A calendar application that integrates with Google Calendar, allowing users
    to manage their calendars in one place.
  • A calendar application that allows users to search for events and create new
    events.
  • A to-do list application that integrates with Google Calendar, allowing users
    to see their tasks and events in one place.
  • A reminder application that uses Google Calendar data to remind users of
    upcoming events.

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}`,
      },
    })
  },
})

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?