Stop a running Meeting Buddy bot session gracefully.
Stop a running Meeting Buddy session. The bot leaves the meeting gracefully, all pending transcriptions are saved, recording metadata is finalized, and the session status is updated to completed.
Both the DELETE and POST /stop endpoints perform the same operation. Use whichever is more convenient for your client.
This operation is idempotent -- calling it multiple times on the same session will not cause errors. Already-stopped sessions return the current status without error.
session_id string required
The unique identifier of the session to stop. Must start with mbsess_ prefix.
Returns the updated Session object with status set to completed, including final recording statistics such as leave_timestamp, total_duration_seconds, segment_count, and file counts.
- Bash
- Python
- Python
- JavaScript
curl -s -X DELETE https://api.aitronos.com/v1/meeting-buddy/sessions/mbsess_abc123def456 \
-H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool