Update Meeting Topic
update_meeting_topic_v1_0Update an existing meeting topic in Procore by specifying its project, meeting, and topic fields, with optional file attachments.
Instructions
Update an existing Meeting Topic. #### 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_id, meeting_topic. Procore API: Project Management > Meetings. Endpoint: PATCH /rest/v1.0/meeting_topics/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — iD of the meeting topic | |
| project_id | Yes | JSON request body field — the ID of the Project the Meeting Topic belongs to | |
| meeting_id | Yes | JSON request body field — the ID of the Meeting the Meeting Topic belongs to | |
| meeting_topic | Yes | JSON request body field — meeting topic object | |
| attachments | No | JSON request body field — an array of the Attachments of the Meeting Topic. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together wit... |