Create Classification
create_classificationCreates a new work classification for a specified company via the Procore API. Provide company_id plus optional name and abbreviation to receive the created classification with its new ID.
Instructions
Create a new Classification associated with the specified company. Pass the record's fields as top-level arguments — they are nested under "work_classification" in the request payload for you. company_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: company_id. Procore API: Company Admin > Company Settings. Endpoint: POST /rest/v1.0/companies/{company_id}/work_classifications
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | JSON request body field — name of the classification | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| abbreviation | No | JSON request body field — the shortened form of classification |