Update Punch Item
update_punch_itemUpdate a specific punch item in a Procore project, modifying only provided fields and optionally attaching images. Returns the updated item.
Instructions
Update a specific Punch Item in a Project. #### Uploading images To upload images, upload the entire payload as multipart/form-data and include the images using punch_item[images][] as files, or alternatively provide Upload IDs using punch_item[upload_ids][]. Send only the fields you intend to change; omitted fields keep their current values. id must identify an existing parent record — resolve it with the matching list tool first. Returns the modified punch item 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: id, project_id, punch_item. Procore API (v1.1): Project Management > Punch List. Endpoint: PATCH /rest/v1.1/punch_items/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — iD of the Punch Item | |
| project_id | Yes | JSON request body field — project ID to which the Punch Item belongs to | |
| punch_item | Yes | JSON request body field — the punch item for this Punch List operation | |
| attachments | No | JSON request body field — [DEPRECATED] Punch Item Assignment attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with ... | |
| run_configurable_validations | No | Query string parameter — if true, validations are run for the corresponding Configurable Field Set. |