Skip to content
Last updated

Stop a running Meeting Buddy bot session gracefully.

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

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.

Path Parameters

session_id string required

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


Returns

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.

cURL
curl -s -X DELETE https://api.aitronos.com/v1/meeting-buddy/sessions/mbsess_abc123def456 \
  -H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool