Field service software
Emit new event when a new Form Response is created.
Emit new event when a new job is created. By creating this trigger, any other Job
triggers will stop working as ServiceM8 will replace any previous ones.
Emit new event when a job completes. By creating this trigger, any other Job
triggers will stop working as ServiceM8 will replace any previous ones.
Emit new event when a job is queued. By creating this trigger, any other Job
triggers will stop working as ServiceM8 will replace any previous ones.
The ServiceM8 API allows businesses to streamline their field service management by automating tasks and integrating with other tools. Through Pipedream, you can harness this API to create custom workflows that trigger actions within ServiceM8 or sync data with other apps. Automate job scheduling, dispatching, invoicing, and more by reacting to events in real-time. Enhance productivity by connecting ServiceM8 to CRMs, accounting software, or custom databases, ensuring consistent and updated information across platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
servicem8: {
type: "app",
app: "servicem8",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.servicem8.com/api_1.0/staff.json`,
headers: {
Authorization: `Bearer ${this.servicem8.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})