Add Subcategory To Category
add_subcategory_to_categoryAdd a subcategory to a project category in Procore. Provide company, project, category IDs and name to create a new subcategory and get its UUID.
Instructions
Add a Subcategory to a Category in a Project. A successful response returns the new Subcategory 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, 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}/subcategories
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 — name of the Subcategory to be added. |