WooCommerce

WooCommerce is the open-source ecommerce platform for WordPress.

Integrate the WooCommerce API with the Agile CRM API

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

Add Score to Contact with Agile CRM API on New Coupon Event (Instant) from WooCommerce API
WooCommerce + Agile CRM
 
Try it
Add Score to Contact with Agile CRM API on New Customer Event (Instant) from WooCommerce API
WooCommerce + Agile CRM
 
Try it
Add Score to Contact with Agile CRM API on New Order Event (Instant) from WooCommerce API
WooCommerce + Agile CRM
 
Try it
Add Score to Contact with Agile CRM API on New Product Event (Instant) from WooCommerce API
WooCommerce + Agile CRM
 
Try it
Add Tags to Contact with Agile CRM API on New Coupon Event (Instant) from WooCommerce API
WooCommerce + Agile CRM
 
Try it
New Coupon Event (Instant) from the WooCommerce API

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

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

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

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

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

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

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

 
Try it
New Contact from the Agile CRM API

Emit new event when a new contact is created

 
Try it
Create Customer with the WooCommerce API

Creates a new customer. See the docs

 
Try it
Add Score to Contact with the Agile CRM API

Used to change the score of a contact. See the documentation

 
Try it
Create Order with the WooCommerce API

Creates a new order. See the docs

 
Try it
Add Tags to Contact with the Agile CRM API

Adds a tag or tags to an existing contact. See the documentation

 
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 Agile CRM

The Agile CRM API interacts with Agile's sales, marketing, and service software, offering a suite of features including contact management, deals, and campaign automation. On Pipedream, you can automate interactions with Agile CRM, such as syncing contacts, updating deals, or triggering campaigns. By leveraging Pipedream's serverless platform, you can connect Agile CRM to hundreds of other apps, creating custom, automated workflows that operate in real-time, and with no server maintenance required.

Connect Agile CRM

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: {
    agile_crm: {
      type: "app",
      app: "agile_crm",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.agile_crm.$auth.domain}.agilecrm.com/dev/api/contacts`,
      auth: {
        username: `${this.agile_crm.$auth.username}`,
        password: `${this.agile_crm.$auth.api_key}`,
      },
    })
  },
})