# ai_mentor_orgs_users_call_configurations_retrieve API ViewSet for managing call configurations. This ViewSet provides endpoints to retrieve, create, and update call configurations for mentors. Call configurations define how voice calls are handled for a mentor. Permissions: - Accessible only to platform admins. Endpoints: GET /api/org/{org}/mentors/{mentor_pk}/call-configurations/ - List all call configurations for a specific mentor - Returns paginated list of call configurations POST /api/org/{org}/mentors/{mentor_pk}/call-configurations/ - Create a new call configuration for a mentor - Requires call configuration data in request body PUT /api/org/{org}/mentors/{mentor_pk}/call-configurations/{id}/ - Update an existing call configuration - Requires call configuration data in request body Query Parameters: - mentor: Filter configurations by mentor ID Returns: - CallConfigurationSerializer data Endpoint: GET /api/ai-mentor/orgs/{org}/users/{user_id}/call-configurations/{id}/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `id` (integer, required) A unique integer value identifying this call configuration. - `org` (string, required) - `user_id` (string, required) ## Response 200 fields (application/json): - `id` (integer, required) - `mentor` (integer, required) - `mode` (string) * - Realtime * - Inference Enum: "realtime", "inference" - `tts_provider` (string) * - Openai * - Google * - Elevenlabs Enum: "openai", "google", "elevenlabs" - `stt_provider` (string) * - Openai * - Google * - Deepgram * - Cartesia Enum: "openai", "google", "deepgram", "cartesia" - `llm_provider` (string) * - Openai * - Google Enum: "openai", "google" - `use_function_calling_for_rag` (boolean) Whether to use function calls in the agent or force RAG calls before LLM generation - `google_voice` (object) - `google_voice.name` (string, required) - `google_voice.provider` (string, required) * - Openai * - Google * - Elevenlabs Enum: "openai", "google", "elevenlabs" - `google_voice.language` (string) - `google_voice.description` (string) - `google_voice.audio_url` (string, required) - `openai_voice` (object) - `openai_voice_id` (integer,null, required) - `google_voice_id` (integer,null, required) - `enable_video` (boolean) Whether to enable video for the call. (applicable only for realtime mode) - `platform_key` (string, required)