Create Meeting Topic
create_meeting_topic_projectCreate a new meeting topic in a specified Procore project meeting. Provide project ID, meeting ID, and topic object; optionally upload attachments.
Instructions
Creates 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 create a new Meetings in Procore. Creates a new Meetings and returns the created object on success (HTTP 201). Required parameters: project_id, meeting_id, meeting_topic. Procore API (v1.1): Project Management > Meetings. Endpoint: POST /rest/v1.1/projects/{project_id}/meeting_topics
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| 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... |