All your customer data pipelines in one platform. Use the Rudderstack HTTP API to send your event data from your sources to the specified destinations.
Emit new event each time the specified coupon event(s) occur
Emit new event each time the specified customer event(s) occur
Emit new event each time the specified order event(s) occur
Emit new event each time the specified product event(s) occur
The RudderStack HTTP API gives you the power to track and send events to RudderStack from anywhere you can make an HTTP request. With this API, you can streamline data from your apps, websites, and servers directly into RudderStack, enabling real-time analytics and insights. Using Pipedream, you can harness this capability to automate data collection and orchestration, syncing event data with other services, triggering actions based on customer behavior, or even enriching event data before it hits your data warehouse.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rudderstack: {
type: "app",
app: "rudderstack",
}
},
async run({steps, $}) {
const data = {
"userId": `{{pass_user_id_here}}`,
"anonymousId": `{{or_pass_anonymouse_user_id_here}}`,
}
return await axios($, {
method: "post",
url: `${this.rudderstack.$auth.data_plane_url}/v1/identify`,
auth: {
username: `${this.rudderstack.$auth.source_write_key}`,
password: ``,
},
data,
})
},
})
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.
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}`,
},
})
},
})