Create Meeting
create_meeting_projectCreates a meeting in a Procore project. Requires project ID and meeting object; supports uploading attachments as multipart/form-data.
Instructions
Create a new 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 create a new Meetings in Procore. Creates a new Meetings and returns the created object on success (HTTP 201). Required parameters: project_id, project_id, meeting. Procore API (v1.1): Project Management > Meetings. Endpoint: POST /rest/v1.1/projects/{project_id}/meetings
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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. |