Update Category Name
update_category_nameChange a category's name in a Procore project. Supply company, project, category IDs and the new name to update and see the refreshed category list.
Instructions
Update a Category’s name within a Project. A successful response returns all Categories for the Project. company_id and project_id default to the values set by procore_set_config when omitted, and category_id must identify an existing parent record — resolve it with the matching list tool first. Applies the change and returns the updated category name. 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, category_id, name. Procore API: Resource Management > Resource Planning. Endpoint: POST /rest/v1.0/workforce-planning/v2/companies/{company_id}/projects/{project_id}/categories/{category_id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | JSON request body field — the updated name of the Category. | |
| 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 | |
| category_id | Yes | URL path parameter — unique identifier for the Category. |