Create Generic Tool
create_generic_toolCreate a custom generic tool for a Procore company, specifying its title, abbreviation, privacy defaults, and notification settings.
Instructions
Create a new Generic Tool in the specified Company. For more information on Generic Tool and Correspondence Tool endpoints, see Working with the Correspondence Tool. 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. Creates the generic tool 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, title. Procore API: Company Admin > Custom - Configurable Tools. Endpoint: POST /rest/v1.0/companies/{company_id}/generic_tools
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. | |
| 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. |