← Squarespace + Cloudflare (API key) integrations

Create DNS Record with Cloudflare (API key) API on New Create Product from Squarespace API

Pipedream makes it easy to connect APIs for Cloudflare (API key), Squarespace and 2,000+ other apps remarkably fast.

Trigger workflow on
New Create Product from the Squarespace API
Next, do this
Create DNS Record with the Cloudflare (API key) API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
4 min
Watch now ➜

Trusted by 800,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Squarespace trigger and Cloudflare (API key) action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Create Product trigger
    1. Connect your Squarespace account
    2. Configure timer
  3. Configure the Create DNS Record action
    1. Connect your Cloudflare (API key) account
    2. Configure zone_id
    3. Select a type
    4. Configure name
    5. Configure content
    6. Configure ttl
    7. Optional- Configure proxied
    8. Optional- Configure priority
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event for each product created.
Version:0.0.3
Key:squarespace-new-create-product

Squarespace Overview

Squarespace's API provides a means to interface programmatically with your Squarespace site, allowing for a plethora of automation opportunities such as manipulating inventory, modifying site content, and syncing data with third-party services. When combined with Pipedream, this can translate into powerful workflows that streamline operations, enhance customer engagement, and keep various platforms in sync with your Squarespace data in real-time.

Trigger Code

import squarespace from "../../squarespace.app.mjs";
import dayjs from "dayjs";
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";

export default {
  name: "New Create Product",
  version: "0.0.3",
  key: "squarespace-new-create-product",
  description: "Emit new event for each product created.",
  type: "source",
  dedupe: "unique",
  props: {
    squarespace,
    timer: {
      type: "$.interface.timer",
      default: {
        intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
      },
    },
  },
  async run({ $ }) {
    const products = await this.squarespace.getProducts({
      params: {
        modifiedAfter: dayjs().subtract(2, "day")
          .toISOString(),
      },
      $,
    });

    for (const product of products) {
      this.$emit(product, {
        id: product.id,
        summary: `New product ${product.id} created`,
        ts: Date.parse(product.createdOn),
      });
    }
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
SquarespacesquarespaceappThis component uses the Squarespace app.
timer$.interface.timer

Trigger Authentication

Squarespace uses OAuth authentication. When you connect your Squarespace account, Pipedream will open a popup window where you can sign into Squarespace and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Squarespace API.

Pipedream requests the following authorization scopes when you connect your account:

website.orderswebsite.orders.readwebsite.transactions.readwebsite.inventorywebsite.inventory.readwebsite.productswebsite.products.read

About Squarespace

Website Builder

Action

Description:Creates a DNS Record given its zone id
Version:0.1.2
Key:cloudflare_api_key-create-dns-record

Cloudflare (API key) Overview

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.

Action Code

// legacy_hash_id: a_K5iLqd
import { axios } from "@pipedream/platform";

export default {
  key: "cloudflare_api_key-create-dns-record",
  name: "Create DNS Record",
  description: "Creates a DNS Record given its zone id",
  version: "0.1.2",
  type: "action",
  props: {
    cloudflare_api_key: {
      type: "app",
      app: "cloudflare_api_key",
    },
    zone_id: {
      type: "string",
      description: "The zone ID where the DNS record being created belongs to.",
    },
    type: {
      type: "string",
      description: "DNS record type.",
      options: [
        "A",
        "AAAA",
        "CNAME",
        "TXT",
        "SRV",
        "LOC",
        "MX",
        "NS",
        "SPF",
        "CERT",
        "DNSKEY",
        "NAPTR",
        "SMIMEA",
        "SSHFP",
        "TLSA",
        "URI",
        "NS",
      ],
    },
    name: {
      type: "string",
      description: "DNS record name.",
    },
    content: {
      type: "string",
      description: "DNS record content.",
    },
    ttl: {
      type: "integer",
      description: "Time to live for DNS record. Value of 1 is 'automatic'.",
    },
    proxied: {
      type: "boolean",
      description: "Whether the record is receiving the performance and security benefits of Cloudflare",
      optional: true,
    },
    priority: {
      type: "string",
      description: "Used with some records like MX and SRV to determine priority. If you do not supply a priority for an MX record, a default value of 0 will be set.",
      optional: true,
    },
  },
  async run({ $ }) {

    return await axios($, {
      method: "post",
      url: `https://api.cloudflare.com/client/v4/zones/${this.zone_id}/dns_records`,
      headers: {
        "X-Auth-Email": `${this.cloudflare_api_key.$auth.Email}`,
        "X-Auth-Key": `${this.cloudflare_api_key.$auth.API_Key}`,
        "Content-Type": "application/json",

      },
      data: {
        type: this.type,
        name: this.name,
        content: this.content,
        ttl: this.ttl,
        proxied: this.proxied,
        priority: this.priority,
      },
    });
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
Cloudflare (API key)cloudflare_api_keyappThis component uses the Cloudflare (API key) app.
zone_idzone_idstring

The zone ID where the DNS record being created belongs to.

typetypestringSelect a value from the drop down menu:AAAAACNAMETXTSRVLOCMXNSSPFCERTDNSKEYNAPTRSMIMEASSHFPTLSAURINS
namenamestring

DNS record name.

contentcontentstring

DNS record content.

ttlttlinteger

Time to live for DNS record. Value of 1 is 'automatic'.

proxiedproxiedboolean

Whether the record is receiving the performance and security benefits of Cloudflare

priorityprioritystring

Used with some records like MX and SRV to determine priority. If you do not supply a priority for an MX record, a default value of 0 will be set.

Action Authentication

Cloudflare (API key) uses API keys for authentication. When you connect your Cloudflare (API key) account, Pipedream securely stores the keys so you can easily authenticate to Cloudflare (API key) APIs in both code and no-code steps.

Visit My Profile to generate an API Token. More details in Cloudflare docs.

About Cloudflare (API key)

CDN, DDoS mitigation, Internet security, and DNS services

More Ways to Connect Cloudflare (API key) + Squarespace

Change Zone's SSL Setting with Cloudflare (API key) API on New Create Product from Squarespace API
Squarespace + Cloudflare (API key)
 
Try it
Create a Certificate with Cloudflare (API key) API on New Create Product from Squarespace API
Squarespace + Cloudflare (API key)
 
Try it
Create Zone with Cloudflare (API key) API on New Create Product from Squarespace API
Squarespace + Cloudflare (API key)
 
Try it
Delete DNS Record with Cloudflare (API key) API on New Create Product from Squarespace API
Squarespace + Cloudflare (API key)
 
Try it
Export DNS Records with Cloudflare (API key) API on New Create Product from Squarespace API
Squarespace + Cloudflare (API key)
 
Try it
New Create Product from the Squarespace API

Emit new event for each product created.

 
Try it
New Create Transaction from the Squarespace API

Emit new event for each transaction created.

 
Try it
New Update Product from the Squarespace API

Emit new event for each product updated.

 
Try it
New Update Transaction from the Squarespace API

Emit new event for each transaction updated.

 
Try it
New Webhook Event from the Squarespace API

Emit new event on each webhook event.

 
Try it
Create Product with the Squarespace API

Create a new product. See docs here

 
Try it
Get Order with the Squarespace API

Get a specific order. See docs here

 
Try it
Get Product with the Squarespace API

Get a specific product. See docs here

 
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

Explore Other Apps

1
-
24
of
2,000+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Premium
Salesforce (REST API)
Salesforce (REST API)
Web services API for interacting with Salesforce
Premium
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Premium
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Premium
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify Developer App
Shopify Developer App
Shopify is a user-friendly e-commerce platform that helps small businesses build an online store and sell online through one streamlined dashboard.
Premium
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Premium
Snowflake
Snowflake
A data warehouse built for the cloud
Premium
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.