Webflow

Webflow is the leading visual development platform for building powerful websites without writing code.

Integrate the Webflow API with the Schedule API

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

Create Item with Webflow API on Daily schedule from Schedule API
Schedule + Webflow
 
Try it
Create Item with Webflow API on Monthly schedule from Schedule API
Schedule + Webflow
 
Try it
Create Item with Webflow API on Schedule based on a custom interval from Schedule API
Schedule + Webflow
 
Try it
Create Item with Webflow API on Weekly schedule from Schedule API
Schedule + Webflow
 
Try it
Delete Collection Item with Webflow API on Custom Interval from Schedule API
Schedule + Webflow
 
Try it
New Form Submission from the Webflow API

Emit new event when a new form is submitted. See the docs here

 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
New Collection Item from the Webflow API

Emit new event when a collection item is created. See the docs here

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Create Collection Item with the Webflow API

Create new collection item. See the docs here

 
Try it
Delete Collection Item with the Webflow API

Delete Item of a Collection. See the docs here

 
Try it
Fulfill Order with the Webflow API

Fulfill an order. See the docs here

 
Try it
Get Collection with the Webflow API

Get a collection. See the docs here

 
Try it
Get Collection Item with the Webflow API

Get a Collection Item. See the docs here

 
Try it

Overview of Webflow

The Webflow API empowers developers to programmatically interact with their Webflow site, enabling automation, data synchronization, and complex integrations with other apps and services. With Pipedream's serverless platform, you can harness this API to craft custom workflows that react to events, manage content dynamically, or extend the capabilities of your Webflow projects by linking them with a vast array of other applications.

Connect Webflow

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: {
    webflow: {
      type: "app",
      app: "webflow",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.webflow.com/user`,
      headers: {
        Authorization: `Bearer ${this.webflow.$auth.oauth_access_token}`,
        "accept-version": `1.0.0`,
      },
    })
  },
})

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.