List Webhooks Deliveries (Deprecated)
list_webhooks_deliveriesList webhook delivery records within a company or project scope to check delivery status or find a delivery ID for subsequent API calls. Read-only and paginated.
Instructions
Deliveries must be listed within a company and/or project scope. DEPRECATED: Procore has deprecated this endpoint (as of 2025-09-15). It is scheduled for removal on 2026-09-16; prefer a newer version of this resource where one exists, and use procore_search_endpoints to find it. Use this to discover webhooks deliveries or to look up the id of one before calling a tool that needs it. hook_id must identify an existing parent record — resolve it with the matching list tool first. Returns a JSON array of webhooks deliveries; page and per_page control pagination and the response reports how many pages remain. Read-only — it changes nothing in Procore. Failures come back as an error payload carrying the HTTP status — commonly 401 when the token has expired, 403 without tool permission, and 404 when an id does not resolve. Required parameters: hook_id, company_id, project_id. Procore API: Platform - Developer Tools > Webhooks. Endpoint: GET /rest/v1.0/webhooks/hooks/{hook_id}/deliveries
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for paginated results (default: 1, 1-indexed) | |
| hook_id | Yes | URL path parameter — unique identifier of the hook | |
| per_page | No | Number of items per page (default: 100, max: 100) | |
| page_size | No | Query string parameter — number of items to return for a page (default: 100) | |
| company_id | Yes | Query string parameter — unique identifier for the company. You must supply either a company_id or project_id. | |
| page_start | No | Query string parameter — the last id of the previous page. | |
| project_id | Yes | Query string parameter — unique identifier for the project. You must supply either a company_id or project_id. | |
| filters__status | No | Query string parameter — filter on status for "any", "successful", "failing" or "discarded" |