Create A New Classification
create_a_new_classificationCreate a new work classification for a Procore project by providing project_id and optional fields. The tool returns the created classification with its new ID.
Instructions
Create a new classification associated with the specified project. Pass the record's fields as top-level arguments — they are nested under "work_classification" in the request payload for you. project_id defaults to the value set by procore_set_config when omitted. Creates the classification and returns it with its new id (HTTP 201); calling it again creates another record. 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: project_id. Procore API: Company Admin > Company Settings. Endpoint: POST /rest/v1.0/projects/{project_id}/work_classifications
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | JSON request body field — name of the classification | |
| is_active | No | JSON request body field — is the classification active or not | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| abbreviation | No | JSON request body field — the shortened form of classification |