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 PostgreSQL API

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

Create Customer with Customer Fields API on New Column from PostgreSQL API
PostgreSQL + Customer Fields
 
Try it
Create Customer with Customer Fields API on New or Updated Row from PostgreSQL API
PostgreSQL + Customer Fields
 
Try it
Create Customer with Customer Fields API on New Row Custom Query from PostgreSQL API
PostgreSQL + Customer Fields
 
Try it
Create Customer with Customer Fields API on New Row from PostgreSQL API
PostgreSQL + Customer Fields
 
Try it
Create Customer with Customer Fields API on New Table from PostgreSQL API
PostgreSQL + Customer Fields
 
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 Column from the PostgreSQL API

Emit new event when a new column is added to a table. See the documentation

 
Try it
New or Updated Row from the PostgreSQL API

Emit new event when a row is added or modified. See the documentation

 
Try it
New Row from the PostgreSQL API

Emit new event when a new row is added to a table. See the documentation

 
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
Delete Row(s) with the PostgreSQL API

Deletes a row or rows from a table. See the documentation

 
Try it
Execute Custom Query with the PostgreSQL API

Executes a custom query you provide. See the documentation

 
Try it
Find Row with the PostgreSQL API

Finds a row in a table via a lookup column. See the documentation

 
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 PostgreSQL

On Pipedream, you can leverage the PostgreSQL app to create workflows that automate database operations, synchronize data across platforms, and react to database events in real-time. Think handling new row entries, updating records from webhooks, or even compiling reports on a set schedule. Pipedream's serverless platform provides a powerful way to connect PostgreSQL with a variety of apps, enabling you to create tailored automation that fits your specific needs.

Connect PostgreSQL

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import postgresql from "@pipedream/postgresql"

export default defineComponent({
  props: {
    postgresql,
  },
  async run({ steps, $ }) {
    // Component source code:
    // https://github.com/PipedreamHQ/pipedream/tree/master/components/postgresql

    const queryObj = {
      text: "SELECT NOW()",
      values: [], // Ignored since query does not contain placeholders
    };
    const { rows } = await this.postgresql.executeQuery(queryObj);
    return rows;
  },
})