Add Category To Project
add_category_to_projectAdd a new category to a Procore project for resource planning. Optionally include subcategories and receive the new category UUID.
Instructions
Add a new Category to a Project. Subcategories can also be provided. A successful response returns the new Category UUID. 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, name. Procore API: Resource Management > Resource Planning. Endpoint: POST /rest/v1.0/workforce-planning/v2/companies/{company_id}/projects/{project_id}/categories
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 Category. | |
| subcategories | No | JSON request body field — list of Subcategories under this Category. If no Subcategories are needed, this can be an empty array. |