Bulk Update Contributing Conditions
bulk_update_contributing_conditionsUpdate the active status of multiple contributing conditions in a single request, avoiding repetitive single-record updates. Ideal for bulk changes in Procore incident management.
Instructions
Updates the active status of multiple contributing conditions in a single request. Prefer this over repeated single-record calls when handling many contributing conditions at once. 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. 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. Procore API: Project Management > Incidents. Endpoint: PATCH /rest/v1.0/companies/{company_id}/contributing_conditions/bulk_update
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | JSON request body field — the ids for this Incidents operation | |
| active | No | JSON request body field — flag that denotes if the Contributing Conditions are available for use | |
| company_id | Yes | URL path parameter — unique identifier for the company. |