Update Contributing Behavior
update_contributing_behaviorModify an existing contributing behavior's name or active status in Procore. Provide the behavior ID and only the fields to change; omitted fields keep current values, and the modified record is returned.
Instructions
Updates a Contributing Behavior. Note that Procore provided Contributing Behaviors' 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_behavior" 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 behavior 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_behaviors/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — unique identifier of the contributing behavior. Returned as id in List and Show responses. | |
| name | No | JSON request body field — display name for the contributing behavior. Must be unique within the company. Names of Procore-provided contributing behaviors cannot be changed. | |
| active | No | JSON request body field — flag that denotes if the Contributing Behavior is available for use | |
| company_id | Yes | URL path parameter — unique identifier for the company. |