The Meetings API allows you to manage meeting schedules and attendees within the Meridian CRM system.
All requests must include a Bearer token in the HTTP header:
Description: Retrieve a list of meetings from the user's organization.
Endpoint: GET api/public/v1/meetings/
Optional Query Parameters:
Response Example:
Description: Retrieve details for a specific meeting.
Endpoint: GET api/public/v1/meetings/{id}/
Response Example:
Description: Create a new meeting.
Endpoint: POST api/public/v1/meetings/
Request Example:
Response: Returns the created meeting object with HTTP 201 status code.
Description: Update an existing meeting.
Endpoint: PUT api/public/v1/meetings/{id}/
Request Example:
Response: Returns the updated meeting object.
Description: Delete a meeting.
Endpoint: DELETE api/public/v1/meetings/{id}/
Response: Returns HTTP 204 No Content on success.
Description: Add, update, or remove attendees for a meeting.
Endpoint: POST api/public/v1/meetings/attendees/
Request Example:
Response: Returns the created attendee object with HTTP 201 status code.
Endpoint: PUT api/public/v1/meetings/attendees/{id}/
Request Example:
Response: Returns the updated attendee object.
Delete Endpoint: DELETE api/public/v1/meetings/attendees/{id}/
Response: Returns HTTP 204 No Content on success.
Description: Add or remove attachments for a meeting.
Endpoint: POST api/public/v1/attachments/
Request Example:
Response: Returns the created attachment object with HTTP 201 status code.
Delete Endpoint: DELETE api/public/v1/attachments/{id}/
Response: Returns HTTP 204 No Content on success.
Description: Retrieve metadata about meeting fields, including field names, types, and whether they are required, createable, or updateable.
Endpoint: GET api/public/v1/meetings/metadata/fields/
Request Example:
Description: Retrieve metadata about meeting attendee fields.
Endpoint: GET api/public/v1/meetings/attendees/metadata/fields/
Request Example:
Description: Retrieve metadata about meeting attachment fields.
Endpoint: GET api/public/v1/attachments/metadata/fields/
Request Example: