Webflow

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

Integrate the Webflow API with the Printify API

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

Create a Product with Printify API on New Form Submission from Webflow API
Webflow + Printify
 
Try it
Submit Order with Printify API on New Form Submission from Webflow API
Webflow + Printify
 
Try it
Update Product with Printify API on New Form Submission from Webflow API
Webflow + Printify
 
Try it
Create a Product with Printify API on New Collection Item from Webflow API
Webflow + Printify
 
Try it
Submit Order with Printify API on New Collection Item from Webflow API
Webflow + Printify
 
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 Watched Event (Instant) from the Printify API

Emit new event when a specific event occurs in your Printify shop.

 
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
Create a Product with the Printify API

Creates a new product on Printify. See the documentation

 
Try it
Create Collection Item with the Webflow API

Create new collection item. See the docs here

 
Try it
Submit Order with the Printify API

Places an order of an existing product on Printify. See the documentation

 
Try it
Delete Collection Item with the Webflow API

Delete Item of a Collection. See the docs here

 
Try it
Update Product with the Printify API

Updates an existing product on Printify. See the documentation

 
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 Printify

The Printify API, accessible within Pipedream's platform, offers a suite of operations to streamline your print-on-demand business. It allows you to create products, manage orders, sync inventory, and handle a variety of other e-commerce functions programmatically. With Pipedream's serverless execution environment, you can tap into the Printify API to automate workflows, integrate with other apps, and manipulate data without the need to manage infrastructure.

Connect Printify

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    printify: {
      type: "app",
      app: "printify",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.printify.com/v1/shops.json`,
      headers: {
        Authorization: `Bearer ${this.printify.$auth.oauth_access_token}`,
      },
    })
  },
})