diff --git a/lms/djangoapps/instructor/views/api.py b/lms/djangoapps/instructor/views/api.py
index 712b9e26fea5ebf6a326424c1d9489ef8d14fe58..f4a4887d8149de4a10c5592efa21b606f4ddf2f4 100644
--- a/lms/djangoapps/instructor/views/api.py
+++ b/lms/djangoapps/instructor/views/api.py
@@ -1278,17 +1278,13 @@ def get_proctored_exam_results(request, course_id):
     get the proctored exam resultsreport for the particular course.
     """
     query_features = [
-        'created',
-        'modified',
-        'started_at',
-        'exam_name',
         'user_email',
-        'completed_at',
-        'external_id',
+        'exam_name',
         'allowed_time_limit_mins',
-        'status',
-        'attempt_code',
         'is_sample_attempt',
+        'started_at',
+        'completed_at',
+        'status',
     ]
 
     course_key = CourseKey.from_string(course_id)
diff --git a/lms/djangoapps/instructor_analytics/tests/test_basic.py b/lms/djangoapps/instructor_analytics/tests/test_basic.py
index 80b8cfaaffc7d2a3cae8131f7e89f731cc94fc3a..3b9595e41a4db3e9a54aeb56d219003cde1f0b0b 100644
--- a/lms/djangoapps/instructor_analytics/tests/test_basic.py
+++ b/lms/djangoapps/instructor_analytics/tests/test_basic.py
@@ -130,17 +130,13 @@ class TestAnalyticsBasic(ModuleStoreTestCase):
 
     def test_get_student_exam_attempt_features(self):
         query_features = [
-            'created',
-            'modified',
-            'started_at',
-            'exam_name',
             'user_email',
-            'completed_at',
-            'external_id',
+            'exam_name',
             'allowed_time_limit_mins',
-            'status',
-            'attempt_code',
             'is_sample_attempt',
+            'started_at',
+            'completed_at',
+            'status',
         ]
 
         proctored_exam_id = create_exam(self.course_key, 'Test Content', 'Test Exam', 1)