Create Punch Item
create_punch_itemCreate a new Punch Item in a Procore project to add an issue to the Punch List. Provide project ID and punch item details, plus optional attachments, to generate a new record.
Instructions
Create a new Punch Item in a Project. #### Uploading images To upload images you must upload the entire payload as multipart/form-data content-type and specify each parameter as form-data together with punch_item[images][] as files. Creates the punch item and returns it with its new id (HTTP 201); calling it again creates another record. 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: project_id, punch_item. Procore API (v1.1): Project Management > Punch List. Endpoint: POST /rest/v1.1/punch_items
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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 — 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 `attachments[... | |
| run_configurable_validations | No | Query string parameter — if true, validations are run for the corresponding Configurable Field Set. |