Update A Single Resource Request
update_a_single_resource_requestUpdate an existing resource request in Procore by sending only the fields to change. Provide company_id and request_id; returns the updated resource request.
Instructions
Updates an existing Resource Request within a company. Only specified properties in the request body will be updated. company_id defaults to the value set by procore_set_config when omitted, and request_id must identify an existing parent record — resolve it with the matching list tool first. Applies the change and returns the updated resource request. 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: company_id, request_id. Procore API: Resource Management > Resource Planning. Endpoint: POST /rest/v1.0/workforce-planning/v2/companies/{company_id}/resource-requests/{request_id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end_day | No | JSON request body field — the last day the requested resource is needed (ISO 8601). | |
| end_time | No | JSON request body field — end time of the request (HH:MM am/pm format). | |
| state_id | No | JSON request body field — uUID of the Assignment State. | |
| start_day | No | JSON request body field — the first day the requested resource is needed (ISO 8601). | |
| work_days | No | JSON request body field — object to control working days (Sunday - Saturday as 0-6 index). | |
| company_id | Yes | URL path parameter — unique identifier for the company. This parameter accepts both formats: - **Recommended**: Procore company ID (integer) - Use this for new integrations - Legacy: LaborChart UUID format (uuid string... | |
| request_id | Yes | URL path parameter — unique identifier for the Resource Request. | |
| start_time | No | JSON request body field — start time of the request (HH:MM am/pm format). | |
| category_id | No | JSON request body field — uUID of the Project Category. | |
| job_title_id | No | JSON request body field — job Title UUID for this request. | |
| subcategory_id | No | JSON request body field — uUID of the Project Subcategory. | |
| work_scope_text | No | JSON request body field — scope of Work for the Resource Request. | |
| instruction_text | No | JSON request body field — instructions for the Resource Request. | |
| percent_allocated | No | JSON request body field — allocation percentage if the request is not hour-based. |