Create Change Event Comment
create_change_event_commentCreates a comment on a Procore change event, accepting company, project, and change event IDs, and returns the newly created comment with its ID.
Instructions
Creates a comment on a change event. Pass the record's fields as top-level arguments — they are nested under "comment" in the request payload for you. company_id and project_id default to the values set by procore_set_config when omitted, and change_event_id must identify an existing parent record — resolve it with the matching list tool first. Creates the change event 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: company_id, project_id, change_event_id, body. Procore API (v2.0): Construction Financials > Change Events. Endpoint: POST /rest/v2.0/companies/{company_id}/projects/{project_id}/change_events/{change_event_id}/comments
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | JSON request body field — comment body text. | |
| rating | No | JSON request body field — optional rating for the comment. | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| change_event_id | Yes | URL path parameter — unique identifier of the change event | |
| prostore_file_ids | No | JSON request body field — optional attachment file IDs. |