The all-in-one construction management software built to help you finish quality projects — safely, on time, and within budget.
Emits an event each time a Budget Snapshot is created, updated, or deleted in a project.
Emits an event each time a Commitment Change Order is created, updated, or deleted in a project.
Emits an event each time a Prime Contract Change Order is created, updated, or deleted in a project.
Emits an event each time a Prime Contract is created, updated, or deleted in a project.
The Procore API empowers developers to interact with its construction management software programmatically, enabling automation of tasks, data synchronization, and enhanced reporting. With APIs covering project management, quality and safety, construction financials, and field productivity, you can craft workflows that streamline operations, reduce manual entry, and provide real-time insights. On Pipedream, these capabilities can be harnessed to create workflows that react to events in Procore or orchestrate actions between Procore and other apps, optimizing construction project workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
procore: {
type: "app",
app: "procore",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.procore.com/rest/v1.0/me`,
headers: {
Authorization: `Bearer ${this.procore.$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}`,
},
})
},
})