The all-in-one construction management software built to help you finish quality projects — safely, on time, and within budget.
Go to siteThe 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}`,
},
})
},
})
Automate Incident Reporting: Trigger a workflow on Pipedream when a safety incident is reported in Procore. Use this trigger to immediately send an email notification to safety managers, log the incident in a Google Sheet for record-keeping, and create a follow-up task in a project management tool like Asana.
Sync Project Financials with Accounting Software: Set up a scheduled Pipedream workflow that retrieves updated project budget and cost data from Procore and syncs it with an accounting platform like QuickBooks. Ensure financial records are always up to date and allow for real-time budget analysis and reporting.
Streamline RFIs and Submittals Management: When a new Request for Information (RFI) or Submittal is created in Procore, trigger a Pipedream workflow to cross-post the details to a Slack channel dedicated to project communications. This keeps the team informed and facilitates quick responses, ensuring project timelines are met with fewer delays.
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.
Procore uses OAuth authentication. When you connect your Procore account, Pipedream will open a popup window where you can sign into Procore and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Procore API.
Pipedream requests the following authorization scopes when you connect your account:
GET
https://login.procore.com/oauth/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
response_type=code
&
state={{oauth.state}}
POST
https://login.procore.com/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://login.procore.com/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}