Update Contributing Condition
update_contributing_conditionUpdate an existing contributing condition by sending the fields to change; omitted fields retain their current values. Returns the modified record.
Instructions
Updates a Contributing Condition. Note that Procore provided Contributing Conditions' names cannot be changed. 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 "contributing_condition" in the request payload for you. company_id defaults to the value set by procore_set_config when omitted, and id must identify an existing parent record — resolve it with the matching list tool first. Returns the modified contributing condition 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, id. Procore API: Project Management > Incidents. Endpoint: PATCH /rest/v1.0/companies/{company_id}/contributing_conditions/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — unique identifier of the contributing condition. Returned as id in List and Show responses. | |
| name | No | JSON request body field — display name for the contributing condition. Must be unique within the company. Names of Procore-provided contributing conditions cannot be changed. | |
| active | No | JSON request body field — flag that denotes if the Contributing Condition is available for use | |
| company_id | Yes | URL path parameter — unique identifier for the company. |