Update A Single Project
update_a_single_projectModify a project's name, status, color, timezone, and workday schedule using company and project IDs. Returns the updated project or an HTTP error status for failed requests.
Instructions
Updats a single project given a company ID and project ID and body params. company_id and project_id default to the values set by procore_set_config when omitted. Applies the change and returns the updated project. 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, 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 |
|---|---|---|---|
| name | Yes | JSON request body field — the name of the Project. | |
| color | No | JSON request body field — hexadecimal color code for the Project. Helps with categorization and visual distinction. | |
| 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. | |
| 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. | |
| 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_date | No | JSON request body field — project's start date. Required if `status` is `active`. | |
| 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. | |
| 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. | |
| 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. |