Create An Equipment Model (Deprecated)
create_an_equipment_modelCreate a new equipment model in Procore by providing its name, make ID, and type ID. The API returns the created model with its assigned ID.
Instructions
Create a new equipment model entry. DEPRECATED: Procore has deprecated this endpoint (as of 2024-12-01). It is scheduled for removal on 2025-12-02; prefer a newer version of this resource where one exists, and use procore_search_endpoints to find it. Pass the record's fields as top-level arguments — they are nested under "managed_equipment_model" in the request payload for you. company_id defaults to the value set by procore_set_config when omitted. Creates the equipment model 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, name, managed_equipment_make_id, managed_equipment_type_id. Procore API: Project Management > Field Productivity. Endpoint: POST /rest/v1.0/companies/{company_id}/managed_equipment_models
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | JSON request body field — name of the equipment model | |
| is_active | No | JSON request body field — if the equipment model is active | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| managed_equipment_make_id | Yes | JSON request body field — equipment make ID the model is associated to | |
| managed_equipment_type_id | Yes | JSON request body field — equipment type ID the model is associated to |