Streak

Streak is a flexible CRM and process management system that lives inside your Gmail inbox.

Integrate the Streak API with the WooCommerce API

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

Create Box with Streak API on New Coupon Event (Instant) from WooCommerce API
WooCommerce + Streak
 
Try it
Create Box with Streak API on New Customer Event (Instant) from WooCommerce API
WooCommerce + Streak
 
Try it
Create Box with Streak API on New Order Event (Instant) from WooCommerce API
WooCommerce + Streak
 
Try it
Create Box with Streak API on New Product Event (Instant) from WooCommerce API
WooCommerce + Streak
 
Try it
Create Customer with WooCommerce API on Box Changed Pipeline (Instant) from Streak API
Streak + WooCommerce
 
Try it
Box Changed Pipeline (Instant) from the Streak API

Emit new event when a box changes pipelines.

 
Try it
Box Changed Stage (Instant) from the Streak API

Emit new event when a box's stage is updated in a pipeline.

 
Try it
New Box (Instant) from the Streak API

Emit new event when a new box is created in a pipeline.

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

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

 
Try it
New Comment (Instant) from the Streak API

Emit new event when a new comment is created within a pipeline.

 
Try it
Create Customer with the WooCommerce API

Creates a new customer. See the docs

 
Try it
Create Order with the WooCommerce API

Creates a new order. See the docs

 
Try it
Create Box with the Streak API

Create a new box in Streak. See the docs

 
Try it
Create Product with the WooCommerce API

Creates a new product. See the docs

 
Try it
Create Task with the Streak API

Create a new task in a box. See the docs

 
Try it

Overview of Streak

The Streak API taps into the core of Streak’s CRM functionality within Gmail, allowing users to automate interactions with pipeline data, such as leads, contacts, and sales opportunities. With Pipedream, you can harness this API to craft serverless workflows that react to events in Streak and connect with countless other services to streamline CRM tasks, sync data across platforms, or trigger communications based on pipeline changes.

Connect Streak

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: {
    streak: {
      type: "app",
      app: "streak",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.streak.com/api/v1/users/me`,
      auth: {
        username: `${this.streak.$auth.api_key}`,
        password: ``,
      },
    })
  },
})

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}`,
      },
    })
  },
})