Bulk Update Work Activities
bulk_update_work_activitiesUpdate multiple work activities at once with a single API request, setting active status or ids for Incidents. Ideal for batch changes instead of repeated single-record updates.
Instructions
Update multiple Work Activities with one request. Prefer this over repeated single-record calls when handling many work activities at once. Pass the record's fields as top-level arguments — they are nested under "work_activity" in the request payload for you. company_id defaults to the value set by procore_set_config when omitted. Returns the modified work activity 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}/incidents/work_activities/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 Work Activities are available for use | |
| company_id | Yes | URL path parameter — unique identifier for the company. |