Update Meeting
update_meeting_projectUpdate an existing meeting in a Procore project by providing only the fields to change. Supports file attachments via multipart/form-data.
Instructions
Update a Meeting. #### Uploading 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. Use this to update an existing Meetings (only the supplied fields are changed). Updates the specified Meetings and returns the modified object on success. Required parameters: project_id, id, project_id, meeting. Procore API (v1.1): Project Management > Meetings. Endpoint: PATCH /rest/v1.1/projects/{project_id}/meetings/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | JSON request body field — the ID of the Project the Meetings belongs to | |
| id | Yes | URL path parameter — unique identifier of the Meetings resource | |
| meeting | Yes | JSON request body field — meeting object | |
| attachments | No | JSON request body field — meeting 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. |