Create A Resource Request On A Project
create_a_resource_request_on_a_projectCreate a resource request for a project to allocate resources by work hours or percent allocation. Specify start and end dates.
Instructions
Creates a new Resource Request for a specified project within a given company. Resource requests can be based on work hours (start_time and end_time) or percent allocation (percent_allocated). Use this to create a new Resource Planning records in Procore. Creates a new Resource Planning records and returns the created object on success (HTTP 201). Required parameters: company_id, project_id, start_day, end_day. Procore API: Resource Management > Resource Planning. Endpoint: POST /rest/v1.0/workforce-planning/v2/companies/{company_id}/projects/{project_id}/resource-requests
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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... | |
| project_id | Yes | URL path parameter — unique identifier for the project | |
| start_day | Yes | JSON request body field — the first day the requested resource is needed (ISO 8601). | |
| end_day | Yes | JSON request body field — the last day the requested resource is needed (ISO 8601). | |
| start_time | No | JSON request body field — start time of the request (HH:MM am/pm format). | |
| end_time | No | JSON request body field — end time of the request (HH:MM am/pm format). | |
| percent_allocated | No | JSON request body field — allocation percentage if the request is not hour-based. | |
| quantity | No | JSON request body field — number of resource requests to create. | |
| job_title_id | No | JSON request body field — job Title UUID for this request. | |
| category_id | No | JSON request body field — uUID of the Project Category. | |
| subcategory_id | No | JSON request body field — uUID of the Project Subcategory. | |
| state_id | No | JSON request body field — uUID of the Assignment State. | |
| 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. | |
| tag_ids | No | JSON request body field — array of UUIDs representing Tags. | |
| work_days | No | JSON request body field — object to control working days (Sunday - Saturday as 0-6 index). |