Create Punch Item Comment
create_punch_item_commentCreate a new comment on a punch item in a Procore project using its ID and project ID. Returns the created comment with its new ID for immediate reference.
Instructions
Create a new Punch Item Comment in a Project. id must identify an existing parent record — resolve it with the matching list tool first. Creates the punch item comment 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: id, project_id, comment. Procore API: Project Management > Punch List. Endpoint: POST /rest/v1.0/punch_items/{id}/comments
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — iD of the Punch Item | |
| comment | Yes | JSON request body field — the comment for this Punch List operation | |
| project_id | Yes | Query string parameter — unique identifier for the project. | |
| attachments | No | JSON request body field — 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[]` as files. |