Webflow

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

Integrate the Webflow API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Form Submission from Webflow API
Webflow + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Form Submission from Webflow API
Webflow + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Form Submission from Webflow API
Webflow + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Form Submission from Webflow API
Webflow + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Form Submission from Webflow API
Webflow + Formatting
 
Try it
New Form Submission from the Webflow API

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

 
Try it
New Collection Item from the Webflow API

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

 
Try it
New Changed Collection Item from the Webflow API

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

 
Try it
New Changed E-commerce Inventory from the Webflow API

Emit new event when an e-commerce inventory level changes. See the docs here

 
Try it
New Changed E-commerce Order from the Webflow API

Emit new event when an e-commerce order is changed. See the docs here

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
Create Collection Item with the Webflow API

Create new collection item. See the docs here

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
Delete Collection Item with the Webflow API

Delete Item of a Collection. 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`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})