Batch Update Generic Tool Items
batch_update_generic_tool_itemsUpdate multiple generic tool items at once, sending only changed fields to avoid overwriting existing values.
Instructions
Update all selected Generic Tool Items. 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. project_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 item 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: generic_tool_id, project_id, generic_tool_items. Procore API: Company Admin > Custom - Configurable Tools. Endpoint: PATCH /rest/v1.0/projects/{project_id}/generic_tools/{generic_tool_id}/generic_tool_items
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| view | No | Query string parameter — if supplied customize the response format | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| completion_mode | No | Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to "all_or_nothing" | |
| generic_tool_id | Yes | URL path parameter — unique identifier for the Generic Tool | |
| generic_tool_items | Yes | JSON request body field — the generic tool items for this Custom - Configurable Tools operation | |
| run_configurable_validations | No | Query string parameter — whether to run configurable validations during the update operation. Defaults to false. |