Reports API:裝置稽核活動報告

裝置稽核活動報告會傳回所有活動的相關資訊 中的裝置 Google 端點管理服務。 每份報表使用基本報表端點請求與報表相關 參數,例如使用者的電子郵件每份報表的時間範圍上限為 過去 180 天的資料

裝置稽核活動報告只能用於合法用途,包括: 時間。詳情請見 Google Workspace 版本比較 ,找出包含這些報表的版本。

擷取網域的裝置稽核事件

如要擷取網域中所有使用者的所有裝置稽核事件,請使用 GET HTTP 要求,並加入 授權說明文件。 如需進一步瞭解要求查詢字串和回應屬性 看 裝置稽核活動事件: 為了方便閱讀,下列範例採用換行格式:

GET https://admin.googleapis.com/admin/reports/v1/activity/users/all
/applications/mobile?endTime=end date&startTime=start date
&maxResults=maximum number of events returned on a response page

以下範例會取得您帳戶中所有裝置稽核事件的報表 過去 180 天的支出記錄maxResults 查詢參數會傳回各 25 筆結果 頁面。

GET https://admin.googleapis.com/admin/reports/v1/activity/users/all/applications/mobile?maxResults=25

以下範例會取得過去 180 年所有裝置稽核事件的報表 天。customerId 會指定要擷取哪個客戶的報表。

GET https://admin.googleapis.com/admin/reports/v1/activity/users/all/applications/mobile?customerId=C03az79cb

依事件名稱擷取裝置稽核事件

在某些情況下,您可能會想要擷取 事件、 例如可疑的活動事件方法是在以下項目中使用 GET HTTP 要求: 格式如下:

GET https://admin.googleapis.com/admin/reports/v1/activity/users/all
/applications/mobile?maxResults=maximum number of events returned on a response page
&eventName=name of the event
&filters=event parameter relational operator parameter value

以下範例說明如何擷取 網域中的 Android 使用者:

GET https://admin.googleapis.com/admin/reports/v1/activity/users/all/applications/mobile?eventName=SUSPICIOUS_ACTIVITY_EVENT&filters=DEVICE_TYPE==ANDROID&maxResults=25