Skip to content
Last updated

Permanently delete a Meeting Buddy session and all associated data.

DELETEhttps://api.aitronos.com/v1/meeting-buddy/sessions/{session_id}/permanent

Permanently delete a Meeting Buddy session from the database. This action is irreversible. The session and all associated data (transcripts, recording metadata) will be permanently removed.

Warning: This operation cannot be undone. Use Stop Session if you only want to end a running session without deleting its data.

Path Parameters

session_id string required

The unique identifier of the session to delete. Must start with mbsess_ prefix.


Returns

Returns no content on success (HTTP 204).

cURL
curl -s -X DELETE https://api.aitronos.com/v1/meeting-buddy/sessions/mbsess_abc123def456/permanent \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -w "\nHTTP Status: %{http_code}\n"