Webflow

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

Integrate the Webflow API with the Go API

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

Run Go Code with Go API on New Form Submission (Instant) from Webflow API
Webflow + Go
 
Try it
Run Go Code with Go API on New Collection Item (Instant) from Webflow API
Webflow + Go
 
Try it
Run Go Code with Go API on Changed Collection Item (Instant) from Webflow API
Webflow + Go
 
Try it
Run Go Code with Go API on New Changed E-commerce Inventory from Webflow API
Webflow + Go
 
Try it
Run Go Code with Go API on New Changed E-commerce Order from Webflow API
Webflow + Go
 
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
Run Go Code with the Go API

Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.

 
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

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 Go

You can execute custom Go scripts on-demand or in response to various triggers and integrate with thousands of apps supported by Pipedream. Writing with Go on Pipedream enables backend operations like data processing, automation, or invoking other APIs, all within the Pipedream ecosystem. By leveraging Go's performance and efficiency, you can design powerful and fast workflows to streamline complex tasks.

Connect Go

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

import (
	"fmt"

	pd "github.com/PipedreamHQ/pipedream-go"
)

func main() {
	// Access previous step data using pd.Steps
	fmt.Println(pd.Steps)

	// Export data using pd.Export
	data := make(map[string]interface{})
	data["name"] = "Luke"
	pd.Export("data", data)
}