Get Admin Team Transcription Settings
Platform-admin read of a team’s transcription settings.
READ-ONLY — never creates a team_settings row. A team with no row yet
returns computed defaults (transcription_enabled=False, auto_chapters=False,
transcribe_seconds_quota=MEDIA_DEFAULT_TEAM_TRANSCRIBE_SECONDS,
consumed_seconds=0), the same shape a configured team would return.
Deliberately does not 404 on an unknown team_id — this route reads team_settings state only (never the teams table), so returning computed defaults for any id is a harmless no-op consistent with “GET must not have a write side effect and must not require an extra existence check.” PATCH performs the real existence check because it is the route that would otherwise silently create an orphaned team_settings row.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.