Update Category Name
update_category_nameUpdate a category's name in a Procore project by providing company, project, and category IDs along with the new name. Returns all categories for the project.
Instructions
Update a Category’s name within a Project. A successful response returns all Categories for the Project. Use this to perform the update category 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, 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 |
|---|---|---|---|
| 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. | |
| name | Yes | JSON request body field — the updated name of the Category. |