DELETE
/
v1
/
meetings
/
{id}
curl -X DELETE https://api.mavioapp.com/v1/meetings/mtg_8f3k2j1m4n5p \
  -H "Authorization: Bearer mvo_live_abc123"
{
  "id": "mtg_8f3k2j1m4n5p",
  "deleted": true,
  "permanent": false,
  "recoverable_until": "2026-05-10T14:52:08Z"
}
Deletes a meeting by ID. By default, this performs a soft delete — the meeting is marked as deleted and excluded from list results, but the data is retained for 30 days in case you need to recover it. To permanently delete a meeting and all associated data immediately, set permanent to true.
id
string
required
The unique meeting identifier (e.g., mtg_8f3k2j1m4n5p).
permanent
boolean
default:"false"
When true, permanently deletes the meeting and all associated data (transcript, summary, recording, action items). This action cannot be undone.

Response

id
string
The ID of the deleted meeting.
deleted
boolean
Always true on success.
permanent
boolean
Whether the deletion was permanent.
recoverable_until
string | null
ISO 8601 timestamp until which the meeting can be recovered. null if permanently deleted.
curl -X DELETE https://api.mavioapp.com/v1/meetings/mtg_8f3k2j1m4n5p \
  -H "Authorization: Bearer mvo_live_abc123"
{
  "id": "mtg_8f3k2j1m4n5p",
  "deleted": true,
  "permanent": false,
  "recoverable_until": "2026-05-10T14:52:08Z"
}
Permanent deletion is irreversible. The meeting, its transcript, summary, recording file, and all associated action items will be removed. This operation cannot be undone.
Soft-deleted meetings can be restored within 30 days by contacting support@mavioapp.com. After 30 days, soft-deleted data is automatically purged.