# ai_mentor_orgs_users_elevenlabs_voice_create Create a new custom Elevenlabs voice. This endpoint allows users to upload audio files to create a custom voice that can be used with the Elevenlabs text-to-speech service. Note: The audio files' total length should be longer than 1 minute and the total size should be smaller than 11 MiB. Args: request: The HTTP request containing the voice name and audio files. org: The organization/tenant identifier. user_id: The ID of the user creating the voice. Returns: Response: The created voice configuration. Raises: BadRequest: If the provided data is invalid, credentials are not found, or there's an API error. Endpoint: POST /api/ai-mentor/orgs/{org}/users/{user_id}/elevenlabs-voice/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Request fields (multipart/form-data): - `name` (string, required) - `files` (array, required) ## Response 200 fields (application/json): - `name` (string, required) - `owner_student` (string,null, required) - `language` (string) - `is_premade` (boolean) - `description` (string) - `sample_audio_url` (string,null, required)