List Budget View Snapshots
list_budget_view_snapshotsLists budget view snapshots for a project, filterable by snapshot type, approval status, or budget view, to find snapshots or get their IDs for later use.
Instructions
Returns a list of project-level snapshots for both project status and ad hoc. You can filter by type. Use this to discover budget view snapshots or to look up the id of one before calling a tool that needs it. Returns a JSON array of budget view snapshots; 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: project_id. Procore API: Construction Financials > Budget. Endpoint: GET /rest/v1.0/budget_view_snapshots
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| sort | No | Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| project_id | Yes | Query string parameter — unique identifier for the project. | |
| filters__snapshot_type | No | Query string parameter — return snapshot(s) of the specified type. | |
| filters__budget_view_id | No | Query string parameter — return snapshot(s) using the specified budget view id. (This will replace budget_template_id filter) | |
| filters__approval_status | No | Query string parameter — return snapshot(s) in the specified status. | |
| filters__budget_template_id | No | Query string parameter — return snapshot(s) using the specified budget template id. |