Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation
Emits an event each time a Budget Snapshot is created, updated, or deleted in a project.
Emit new event when a new version of an npm package is published. See the documentation
Emits an event each time a Commitment Change Order is created, updated, or deleted in a project.
Emit new event when a new budget snapshot event is created. See the documentation
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}`,
},
})
},
})