Customer Fields

Create customer sign-up forms as unique as your business, and save custom data to customer accounts.

Integrate the Customer Fields API with the WooCommerce API

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

Create Customer with Customer Fields API on New Coupon Event (Instant) from WooCommerce API
WooCommerce + Customer Fields
 
Try it
Create Customer with Customer Fields API on New Customer Event (Instant) from WooCommerce API
WooCommerce + Customer Fields
 
Try it
Create Customer with Customer Fields API on New Order Event (Instant) from WooCommerce API
WooCommerce + Customer Fields
 
Try it
Create Customer with Customer Fields API on New Product Event (Instant) from WooCommerce API
WooCommerce + Customer Fields
 
Try it
Create Customer with WooCommerce API on Customer Created (Instant) from Customer Fields API
Customer Fields + WooCommerce
 
Try it
Customer Created (Instant) from the Customer Fields API

Trigger when a new customer is added to the database. See the documentation.

 
Try it
Customer Updated (Instant) from the Customer Fields API

Trigger when a profile of a customer has been updated or changed. 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 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
Create Customer with the Customer Fields API

Create a new customer with detailed attributes using the provided data. See the documentation.

 
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 Product with the WooCommerce API

Creates a new product. See the docs

 
Try it
Update Customer with the Customer Fields API

Update an existing customer's information with new provided data. See the documentation.

 
Try it

Overview of Customer Fields

The Customer Fields API provides a suite of tools for managing customer data in e-commerce platforms, including custom form fields and data automation. With it, you can efficiently tailor customer interactions, streamline data collection, and enhance the shopping experience. Integrating Customer Fields with Pipedream allows for seamless automation of tasks like syncing data to other platforms, triggering personalized communications, or managing customer segments based on custom field data.

Connect Customer Fields

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

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