Cloudflare (API key)

CDN, DDoS mitigation, Internet security, and DNS services

Integrate the Cloudflare (API key) API with the Discord API

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

Create IP Access Rule with Cloudflare (API key) API on New Command Received (Instant) from Discord API
Discord + Cloudflare (API key)
 
Try it
Change Development Mode with Cloudflare (API key) API on New Message (Instant) from Discord API
Discord + Cloudflare (API key)
 
Try it
Change Zone's SSL Setting with Cloudflare (API key) API on New Message from Discord API
Discord + Cloudflare (API key)
 
Try it
Create a Certificate with Cloudflare (API key) API on New Message from Discord API
Discord + Cloudflare (API key)
 
Try it
Create DNS Record with Cloudflare (API key) API on New Message (Instant) from Discord API
Discord + Cloudflare (API key)
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
Reaction Added (Instant) from the Discord API

Emit new event for each reaction added to a message

 
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)

Harness the power of Cloudflare within Pipedream's scalable platform to automate and optimize your web operations. The Cloudflare API enables you to programmatically control countless aspects of your web presence, from security settings and firewall rules to traffic and DNS management. By integrating this with Pipedream, you can create custom workflows that react to specific triggers, manipulate Cloudflare configurations on-the-fly, and connect to countless other services for a seamless automation experience.

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 Discord

The Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.

Connect Discord

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: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})