WooCommerce

WooCommerce is the open-source ecommerce platform for WordPress.

Integrate the WooCommerce API with the Crove API

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

Complete Document with Crove API on New CouponEvent from WooCommerce API
WooCommerce + Crove
 
Try it
Complete Document with Crove API on New Customer Event from WooCommerce API
WooCommerce + Crove
 
Try it
Complete Document with Crove API on New Order Event from WooCommerce API
WooCommerce + Crove
 
Try it
Complete Document with Crove API on New Product Event from WooCommerce API
WooCommerce + Crove
 
Try it
Create Customer with WooCommerce API on Document Completed from Crove API
Crove + WooCommerce
 
Try it
Document Completed from the Crove API

Triggers when a document is completed.

 
Try it
Document Created from the Crove API

Triggers when a new document is created.

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

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

 
Try it
Document Submitted from the Crove API

Triggers when a document is submitted.

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

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

 
Try it
Create Customer with the WooCommerce API

Creates a new customer. See the docs

 
Try it
Complete Document with the Crove API

Mark the document as completed

 
Try it
Create Order with the WooCommerce API

Creates a new order. See the docs

 
Try it
Create Document with the Crove API

Create a new document.

 
Try it
Create Product with the WooCommerce API

Creates a new product. See the docs

 
Try it

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

Overview of Crove

The Crove API offers a suite of tools for automating document creation, customization, and management. Using Pipedream's integration capabilities, you can leverage Crove to generate tailored documents based on dynamic data inputs and trigger actions within other applications. Imagine auto-generating contracts when a deal is marked 'won' in a CRM, or creating personalized onboarding paperwork as soon as a new employee is added to your HR system. With Pipedream, you can connect Crove to a multitude of apps to streamline document workflows and enhance productivity.

Connect Crove

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: {
    crove_app: {
      type: "app",
      app: "crove_app",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://v2.api.crove.app/api/integrations/external/templates/`,
      headers: {
        "Content-Type": `application/json`,
        "X-API-KEY": `${this.crove_app.$auth.api_key}`,
      },
    })
  },
})