Update Item Response Set
update_item_response_setPartially update a company checklist item response set in Procore by sending only the fields to change.
Instructions
Updates a Company Checklist Item Response Set for a specified Company. 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 "response_set" 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 item response set 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 > Inspections. Endpoint: PATCH /rest/v1.0/companies/{company_id}/checklist/item/response_sets/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — item Response Set ID | |
| name | No | JSON request body field — name of the Response Set | |
| active | No | JSON request body field — indicates whether a Response Set is available for use | |
| company_id | Yes | URL path parameter — unique identifier for the company. |