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 Data Stores API

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

Add or update a single record with Data Stores API on Budget Snapshot Event (Instant) from Procore API
Procore + Data Stores
 
Try it
Add or update a single record with Data Stores API on Commitment Change Order Event (Instant) from Procore API
Procore + Data Stores
 
Try it
Add or update a single record with Data Stores API on New Event (Instant) from Procore API
Procore + Data Stores
 
Try it
Add or update a single record with Data Stores API on Prime Contract Change Order Event (Instant) from Procore API
Procore + Data Stores
 
Try it
Add or update a single record with Data Stores API on Prime Contract Event(Instant) from Procore API
Procore + Data Stores
 
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
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 Event (Instant) from the Procore API

Emits an event for each webhook notification.

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

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

 
Try it
Prime Contract Event(Instant) from the Procore API

Emits an event each time a Prime Contract is created, updated, or deleted in a project.

 
Try it
Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
Try it
Append to record with the Data Stores API

Append to a record in your data store Pipedream Data Store. If the record does not exist, a new record will be created in an array format.

 
Try it
Check for existence of key with the Data Stores API

Check if a key exists in your Pipedream Data Store or create one if it doesn't exist.

 
Try it
Delete a single record with the Data Stores API

Delete a single record in your Pipedream Data Store.

 
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}`,
      },
    })
  },
})

Overview of Data Stores

With the Data Stores API, you can build applications that:

  • Store data for later retrieval
  • Retrieve data from a store
  • Update data in a store
  • Delete data from a store

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})