Update Monitoring Resource
update_monitoring_resourcePartially update a monitoring resource's attributes in Procore by sending only the fields to change. Provide project ID and resource ID; other fields remain unchanged.
Instructions
Updates a Monitoring Resource's attributes. Send only the fields you intend to change; omitted fields keep their current values. Pass the record's fields as top-level arguments — they are nested under "monitoring_resource" in the request payload for you. project_id defaults to the value set by procore_set_config when omitted, and id must identify an existing parent record — resolve it with the matching list tool first. Returns the modified monitoring resource on success. 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, id. Procore API: Construction Financials > Budget. Endpoint: PATCH /rest/v1.0/projects/{project_id}/monitoring_resources/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — monitoring Resource ID | |
| end_date | No | JSON request body field — end Date, expressed in ISO 8601 date format (YYYY-MM-DD) | |
| unit_cost | No | JSON request body field — the unit cost for this Budget operation | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| start_date | No | JSON request body field — start Date, expressed in ISO 8601 date format (YYYY-MM-DD) | |
| description | No | JSON request body field — the description for this Budget operation | |
| utilization | No | JSON request body field — utilization, expressed as a decimal where 1.0 is 100% | |
| unit_of_measure | No | JSON request body field — the unit of measure for this Budget operation |