# ai_mentor_orgs_users_audio_to_text_create Convert an uploaded audio file to text. Args: request: The HTTP request containing the audio file. org: The organization/tenant identifier. user_id: The ID of the user uploading the audio. Returns: Response: The transcribed text from the audio file. Raises: BadRequest: If the audio file is invalid or cannot be processed. NotFound: If the API key for the tenant is not found. Endpoint: POST /api/ai-mentor/orgs/{org}/users/{user_id}/audio-to-text/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Request fields (multipart/form-data): - `file` (string, required) ## Response 200 fields (application/json): - `text` (string, required)