Create A Budget Change
create_a_budget_changeCreate a new budget change with adjustments. Provide project ID and status; add optional details like title, line items, and attachments to record the change.
Instructions
Create a new budget change with adjustments. project_id defaults to the value set by procore_set_config when omitted. Creates the budget change and returns it with its new id (HTTP 201); calling it again creates another record. 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, status. Procore API: Construction Financials > Budget. Endpoint: POST /rest/v1.0/projects/{project_id}/budget_changes
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | JSON request body field — title of budget change | |
| number | No | JSON request body field — number field of budget change. If not provided, it will be assigned. | |
| status | Yes | JSON request body field — status of budget change | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| description | No | JSON request body field — description of budget change in HTML format | |
| prostore_file_ids | No | JSON request body field — the prostore file identifiers that will be associated with this budget change as attachments | |
| adjustment_line_items | No | JSON request body field — list of budget change line items. todo this key be renamed to line_items in the future | |
| production_quantities | No | JSON request body field — list of budget change production quantities |