procore-webhooks-events

Featured

Procore webhooks events — construction management platform integration. Use when working with Procore API for project management, RFIs, or submittals. Trigger with phrases like "procore webhooks events", "procore-webhooks-events".

AI & Automation 2,359 stars 334 forks Updated today MIT

Install

View on GitHub

Quality Score: 97/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
63
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Procore Webhooks Events ## Overview Implementation patterns for Procore webhooks events using the REST API with OAuth2 authentication. ## Prerequisites - Completed `procore-install-auth` setup ## Instructions ### Step 1: API Call Pattern ```python import os, requests token_resp = requests.post("https://login.procore.com/oauth/token", data={ "grant_type": "client_credentials", "client_id": os.environ["PROCORE_CLIENT_ID"], "client_secret": os.environ["PROCORE_CLIENT_SECRET"], }) access_token = token_resp.json()["access_token"] headers = {"Authorization": f"Bearer {access_token}"} companies = requests.get("https://api.procore.com/rest/v1.0/companies", headers=headers) print(f"Companies: {len(companies.json())}") ``` ## Output - Procore API integration for webhooks events ## Error Handling | Error | Cause | Solution | |-------|-------|----------| | 401 Unauthorized | Expired token | Re-authenticate | | 429 Rate Limited | Too many requests | Implement backoff | | 403 Forbidden | Insufficient permissions | Check project role | ## Resources - [Procore Developers](https://developers.procore.com/) - [REST API Reference](https://developers.procore.com/reference/rest) ## Next Steps See related Procore skills for more workflows.

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
8 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category