Procore

The all-in-one construction management software built to help you finish quality projects — safely, on time, and within budget.

Integrate the Procore API with the HTTP / Webhook API

Setup the Procore API trigger to run a workflow which integrates with the HTTP / Webhook API. Pipedream's integration platform allows you to integrate Procore and HTTP / Webhook remarkably fast. Free for developers.

Custom Request with HTTP / Webhook API on Budget Snapshot Event (Instant) from Procore API
Procore + HTTP / Webhook
 
Try it
Custom Request with HTTP / Webhook API on Commitment Change Order Event (Instant) from Procore API
Procore + HTTP / Webhook
 
Try it
Custom Request with HTTP / Webhook API on New Event (Instant) from Procore API
Procore + HTTP / Webhook
 
Try it
Custom Request with HTTP / Webhook API on Prime Contract Change Order Event (Instant) from Procore API
Procore + HTTP / Webhook
 
Try it
Custom Request with HTTP / Webhook API on Prime Contract Event(Instant) from Procore API
Procore + HTTP / Webhook
 
Try it
Budget Snapshot Event (Instant) from the Procore API

Emits an event each time a Budget Snapshot is created, updated, or deleted in a project.

 
Try it
New Requests from the HTTP / Webhook API

Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.

 
Try it
Commitment Change Order Event (Instant) from the Procore API

Emits an event each time a Commitment Change Order is created, updated, or deleted in a project.

 
Try it
New Requests (Payload Only) from the HTTP / Webhook API

Get a URL and emit the HTTP body as an event on every request

 
Try it
New Event (Instant) from the Procore API

Emits an event for each webhook notification.

 
Try it
Send any HTTP Request with the HTTP / Webhook API

Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.

 
Try it
Send GET Request with the HTTP / Webhook API

Send an HTTP GET request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Send POST Request with the HTTP / Webhook API

Send an HTTP POST request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Send PUT Request with the HTTP / Webhook API

Send an HTTP PUT request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Return HTTP Response with the HTTP / Webhook API

Use with an HTTP trigger that uses "Return a custom response from your workflow" as its HTTP Response

 
Try it

Overview of Procore

Procore's API enables developers to build powerful applications for industries with complex workflows, such as construction. With the Procore API, you can extend and customize Procore's existing features, integrate with external platforms and applications, and create innovative solutions for your organization.

Here are some examples of what you can build with the Procore API:

  • Automatically sync project documents with external file storage systems
  • Streamline transition from bids to projects
  • Create custom reports on key project metrics
  • Generate custom invoices with custom language and branding
  • Automatically monitor and respond to changes in project scheduling
  • Develop dashboards to set up tracking for subcontractors and suppliers
  • Automate communication between stakeholders
  • Integrate Procore user data with third-party applications

Connect Procore

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Connect HTTP / Webhook

1
2
3
4
5
6
7
8
9
10
11
12
13
// To use any npm package on Pipedream, just import it
import axios from "axios"

export default defineComponent({
  async run({ steps, $ }) {
    const { data } = await axios({
      method: "GET",
      url: "https://pokeapi.co/api/v2/pokemon/charizard",
    })
    return data.species
  },
})

Community Posts

A Look at Pipedream
A Look at Pipedream
I'm going to build a workflow that will search Twitter every hour for a keyword. It will take the results, format them nicely, and then email it.
Building a Traffic-Based Workflow in Pipedream
Building a Traffic-Based Workflow in Pipedream
Normally I don't like to blog about stuff that isn't generally available to all, but as it will be available sometime soon, I decided to go ahead anyway. And I built something really cool I want to share so that's another reason to talk about this now!