Skip to main content

Delete Meetings

Critical Operation

Delete operations are PERMANENT and CANNOT BE UNDONE. These endpoints will permanently remove meeting data from the system. Please use extreme caution when performing deletions.

Overview

The API provides two deletion endpoints:

  1. Delete a single meeting by ID
  2. Delete all meetings (bulk deletion)
Before You Delete
  • Always verify the meeting ID before deletion
  • Ensure you have proper backups in place

Delete Single Meeting

info

This endpoint allows you to permanently delete a specific meeting using its unique identifier.

API Endpoint

[DELETE] /v1/integrations/meetings/:id

Request Parameters

FieldTypeRequiredDescription
idstringYesThe unique identifier of the meeting to delete

Response

Success Response (200)

NO CONTENT
note

A successful deletion returns a 200 status code with no content in the response body.

Delete All Meetings

Bulk Operation

This endpoint will delete ALL meetings for registered users. This operation cannot be reversed. Use with extreme caution.

API Endpoint

[DELETE] /v1/integrations/meetings

Description

This endpoint performs a bulk deletion of all meetings belonging to users registered to the Node.

Response

Success Response (200)

NO CONTENT
note

A successful bulk deletion returns a 200 status code with no content in the response body.