Google Admin report list api suddenly started throwing 500. Have tried from api as well as from SDK and both are throwing GoogleJsonResponseException. after debugging found that if we don't specify eventName filter then it is working but after adding evenName filter (ex.download or edit) it throws 500. API : https://admin.googleapis.com/admin/reports/v1/activity/users/all
Try above api from google itself via https://developers.google.com/admin-sdk/reports/reference/rest/v1/activities/list
and specify any eventName(view,edit,download,share)
below is SDK code
Reports.Activities.List list = Reports.activities().list(caller, activityName).setOauthToken("accesstoken").setMaxResults("1000") .setStartTime(startTime).setStartTime("endTime").setEventName("edit");
Activities result = list.execute();