Update Generic Tool
update_generic_toolUpdate a generic tool's attributes in Procore, sending only the fields to change while keeping omitted values intact. Modify title, abbreviation, privacy, and notification settings with a PATCH request.
Instructions
Update a Generic Tool's attributes. For more information on Generic Tool and Correspondence Tool endpoints, see Working with the Correspondence Tool. Send only the fields you intend to change; omitted fields keep their current values. Pass the record's fields as top-level arguments — they are nested under "generic_tool" in the request payload for you. company_id defaults to the value set by procore_set_config when omitted, and generic_tool_id must identify an existing parent record — resolve it with the matching list tool first. Returns the modified generic tool on success. 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, generic_tool_id, title. Procore API: Company Admin > Custom - Configurable Tools. Endpoint: PATCH /rest/v1.0/companies/{company_id}/generic_tools/{generic_tool_id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | JSON request body field — the title of the generic tool. | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| abbreviation | No | JSON request body field — an abbreviation for the generic tool. | |
| generic_tool_id | Yes | URL path parameter — unique identifier for the Generic Tool. | |
| private_by_default | No | JSON request body field — if this property is set to true, any items that are created for the tool are private by default. | |
| new_project_default | No | JSON request body field — if this property is set to true, the generic tool will be added to new projects by default. | |
| send_overdue_notifications | No | JSON request body field — if this property is set to true, notifications will be sent to assignees when an item is overdue. |