Update Meeting
update_meeting_v1_0Update an existing meeting in Procore by providing meeting ID, project ID, and meeting details. Supports uploading attachments using 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: id, project_id, meeting. Procore API: Project Management > Meetings. Endpoint: PATCH /rest/v1.0/meetings/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — unique identifier of the Meetings resource | |
| project_id | Yes | JSON request body field — the ID of the Project the Meetings belongs to | |
| 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. |