WooCommerce is the open-source ecommerce platform for WordPress.
Emit new event when a booking is created in Cliniko. See the documentation
Emit new event when a contact is created in Cliniko. See the documentation
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
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}`,
},
})
},
})
The Cliniko API opens a gateway to healthcare practice management by allowing you to interact with patient data, appointments, treatments, and more. With Pipedream, you can automate mundane tasks, ensuring that patient care remains front and center. Think of syncing appointment data with other calendars, sending personalized follow-up emails, or even managing inventory based on treatment records, all streamlined on a serverless platform.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cliniko: {
type: "app",
app: "cliniko",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.${this.cliniko.$auth.shard}.cliniko.com/v1/users`,
headers: {
"User-Agent": `Pipedream (support@pipedream.com)`,
"Accept": `application/json`,
},
auth: {
username: `${this.cliniko.$auth.api_key}`,
password: ``,
},
})
},
})