Update A Single Project
update_a_single_projectUpdate a project's details in Procore's Resource Planning by providing company ID, project ID, name, and status.
Instructions
Updats a single project given a company ID and project ID and body params. Use this to perform the update a action on Resource Planning records. Creates a new Resource Planning records and returns the created object on success (HTTP 201). Required parameters: company_id, project_id, name, status. Procore API: Resource Management > Resource Planning. Endpoint: POST /rest/v1.0/workforce-planning/v2/companies/{company_id}/projects/{project_id}
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 | |
| name | Yes | JSON request body field — the name of the Project. | |
| status | Yes | JSON request body field — controls Project visibility and filtering. `active` - Project is currently in progress. `pending` - Project is planned but not started. `inactive` - Project is no longer active. | |
| start_date | No | JSON request body field — project's start date. Required if `status` is `active`. | |
| timezone | No | JSON request body field — the timezone to use for scheduling outbound messages for the Project. If not provided, the Group timezone will be used. | |
| color | No | JSON request body field — hexadecimal color code for the Project. Helps with categorization and visual distinction. | |
| daily_start_time | No | JSON request body field — default time the Project's workday begins. Must follow `HH:MM am/pm` format. Allowed increments: 15 minutes. | |
| daily_end_time | No | JSON request body field — default time the Project's workday ends. Must follow `HH:MM am/pm` format. Allowed increments: 15 minutes. | |
| job_title_id | No | JSON request body field — uUID of the Job Title for the Role. If omitted, the Person's default Job Title is used. |