# ai_mentor_orgs_users_mentors_unstar_create Remove a mentor from a user's starred list. Args: request: The HTTP request. org: The organization/tenant identifier. user_id: The ID of the user unstarring the mentor. mentor: The identifier of the mentor to unstar. Returns: Response: The updated star status of the mentor. Raises: NotFound: If the specified mentor or student does not exist. BadRequest: If the request is invalid. Endpoint: POST /api/ai-mentor/orgs/{org}/users/{user_id}/mentors/{mentor}/unstar/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `mentor` (string, required) - `org` (string, required) - `user_id` (string, required) ## Response 200 fields (application/json): - `is_starred` (boolean) - `updated_at` (string, required) - `mentor` (string, required) - `student` (string, required) - `recently_accessed_at` (string,null, required)