Create Monitoring Resource
create_monitoring_resourceCreate a monitoring resource on a budget line item to add a new budget record in Procore. Requires project ID, dates, unit cost, and budget line item ID.
Instructions
Creates a Monitoring Resource on a given Project's Budget Line Item. Use this to create a new Budget records in Procore. Creates a new Budget records and returns the created object on success (HTTP 201). Required parameters: project_id, description, start_date, end_date, unit_of_measure, unit_cost, utilization, budget_line_item_id. Procore API: Construction Financials > Budget. Endpoint: POST /rest/v1.0/projects/{project_id}/monitoring_resources
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| description | Yes | JSON request body field — the description for this Budget operation | |
| start_date | Yes | JSON request body field — start Date, expressed in ISO 8601 date format (YYYY-MM-DD) | |
| end_date | Yes | JSON request body field — end Date, expressed in ISO 8601 date format (YYYY-MM-DD) | |
| unit_of_measure | Yes | JSON request body field — the unit of measure for this Budget operation | |
| unit_cost | Yes | JSON request body field — the unit cost for this Budget operation | |
| utilization | Yes | JSON request body field — utilization, expressed as a decimal where 1.0 is 100% | |
| budget_line_item_id | Yes | JSON request body field — unique identifier of the budget line item |