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 Discord API

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

Send Message (Advanced) with Discord API on Budget Snapshot Event (Instant) from Procore API
Procore + Discord
 
Try it
Send Message (Advanced) with Discord API on Commitment Change Order Event (Instant) from Procore API
Procore + Discord
 
Try it
Send Message (Advanced) with Discord API on New Event (Instant) from Procore API
Procore + Discord
 
Try it
Send Message (Advanced) with Discord API on Prime Contract Change Order Event (Instant) from Procore API
Procore + Discord
 
Try it
Send Message (Advanced) with Discord API on Prime Contract Event(Instant) from Procore API
Procore + Discord
 
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 Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
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
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Event (Instant) from the Procore API

Emits an event for each webhook notification.

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it
Send Message (Advanced) with the Discord API

Send a simple or structured message (using embeds) to a Discord channel

 
Try it
Send Message With File with the Discord API

Post a message with an attached file

 
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 Discord

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})