Frame.io

Video Review and Collaboration Software

Integrate the Frame.io API with the WooCommerce API

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

Create Asset with Frame.io API on New Coupon Event (Instant) from WooCommerce API
WooCommerce + Frame.io
 
Try it
Create Asset with Frame.io API on New Customer Event (Instant) from WooCommerce API
WooCommerce + Frame.io
 
Try it
Create Asset with Frame.io API on New Order Event (Instant) from WooCommerce API
WooCommerce + Frame.io
 
Try it
Create Asset with Frame.io API on New Product Event (Instant) from WooCommerce API
WooCommerce + Frame.io
 
Try it
Create Comment with Frame.io API on New Coupon Event (Instant) from WooCommerce API
WooCommerce + Frame.io
 
Try it
New Asset (Instant) from the Frame.io API

Emit new event when an asset is uploaded. See the documentation

 
Try it
New Comment (Instant) from the Frame.io API

Emit new event when a new comment is left on an asset. See the documentation

 
Try it
New Project (Instant) from the Frame.io API

Emit new event when a new project is created. See the documentation

 
Try it
New Coupon Event (Instant) from the WooCommerce API

Emit new event each time the specified coupon event(s) occur

 
Try it
New Webhook Event (Instant) from the Frame.io API

Emit new event when a new project is created. See the documentation

 
Try it
Create Asset with the Frame.io API

Creates a new asset in Frame.io. See the documentation

 
Try it
Create Customer with the WooCommerce API

Creates a new customer. See the docs

 
Try it
Create Comment with the Frame.io API

Creates a new comment on an asset in Frame.io. See the documentation

 
Try it
Create Order with the WooCommerce API

Creates a new order. See the docs

 
Try it
Create Project with the Frame.io API

Creates a new project on Frame.io. See the documentation

 
Try it

Overview of Frame.io

The Frame.io API hooks into their robust video collaboration platform, enabling automated workflows around video reviews, project updates, and asset management. With the API, you can programmatically interact with comments, accounts, projects, and more—perfect for integrating with other tools to streamline video production pipelines.

Connect Frame.io

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: {
    frame: {
      type: "app",
      app: "frame",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.frame.io/v2/accounts`,
      headers: {
        Authorization: `Bearer ${this.frame.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of WooCommerce

WooCommerce is a customizable, open-source eCommerce platform built on WordPress. With the WooCommerce API, you can tap into the heart of your eCommerce store to read, create, update, and delete products, orders, and customers. On Pipedream, you can harness this API to automate routine tasks, sync data across platforms, and enhance customer experiences. By connecting WooCommerce to a wide array of apps and services, you can streamline operations, trigger personalized marketing, and analyze your sales data with greater ease.

Connect WooCommerce

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: {
    woocommerce: {
      type: "app",
      app: "woocommerce",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.woocommerce.$auth.url}/wp-json/wc/v2/orders`,
      auth: {
        username: `${this.woocommerce.$auth.key}`,
        password: `${this.woocommerce.$auth.secret}`,
      },
    })
  },
})