Skip to main content
DELETE
/
v1
/
channels
/
{id}
curl -X DELETE https://api.mavioapp.com/v1/channels/chn_a1b2c3d4e5 \
  -H "Authorization: Bearer mvo_live_abc123"
result = client.channels.delete("chn_a1b2c3d4e5")
assert result.deleted is True
const result = await client.channels.delete('chn_a1b2c3d4e5');
console.log(result.deleted); // true
{
  "id": "chn_a1b2c3d4e5",
  "deleted": true
}
Permanently deletes a channel and removes all member associations. Meetings that were in the channel are not deleted — they remain accessible but are no longer associated with any channel. This action cannot be undone. Only the channel owner can delete a channel. Admins and regular members receive a 403 Forbidden error.
id
string
required
The unique channel identifier (e.g., chn_a1b2c3d4e5).

Response

id
string
The ID of the deleted channel.
deleted
boolean
Always true for a successful deletion.
curl -X DELETE https://api.mavioapp.com/v1/channels/chn_a1b2c3d4e5 \
  -H "Authorization: Bearer mvo_live_abc123"
result = client.channels.delete("chn_a1b2c3d4e5")
assert result.deleted is True
const result = await client.channels.delete('chn_a1b2c3d4e5');
console.log(result.deleted); // true
{
  "id": "chn_a1b2c3d4e5",
  "deleted": true
}