with Mocean API and Cloudflare?
Emit new event when the account balance has been updated. See the documentation
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 documentation
Retrieve your current account balance with Mocean API. See the documentation
Choose the appropriate SSL setting for your zone. See the docs here
Send an outbound SMS from your Mocean account. See the documentation
The Mocean API provides tools for sending SMS and making voice calls, enabling you to integrate communication features into your applications or workflows seamlessly. With MoceanAPI on Pipedream, you can automate sending notifications, create alert systems, or even implement two-factor authentication (2FA). It interacts with other apps and services to craft powerful, event-driven automation.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { mocean_api: { type: "app", app: "mocean_api", } }, async run({steps, $}) { return await axios($, { url: `https://rest.moceanapi.com/rest/2/account/balance`, params: { "mocean-api-key": `${this.mocean_api.$auth.api_key}`, "mocean-api-secret": `${this.mocean_api.$auth.api_secret}`, }, }) }, })
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.
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}`, }, }) }, })