## 查詢 Log 紀錄 /tipc/logExport/search ``` json Request: { # 開始時間 "startCreateTime": "2023/08/01 00:00:00", # 結束時間 "endCreateTime": "2023/09/30 23:59:59", # Log 類型 "recordTypes": [ "LoginRecord",# 登入紀錄 "RecordTabLevel0", # 儀表板異動-儀表板 "RecordTabLevel1", # 儀表板異動-主頁籤 "RecordTabLevel2", # 儀表板異動-次頁籤 "RecordChart", # 儀表板異動-報表 "RecordRole", # 角色異動紀錄 "RecordMember" # 使用者紀錄 ], # 關鍵字 "searchText": "developer" } Response: { # 無使用此欄位 "currentPage": 0, "list": [ { # 分類 "recordType": "string", # 次分類 "subRecordType": "string", # 儀錶板名稱 "tabLevelZero": "string", # 儀錶板名稱 "tabLevelOne": "string", # 儀錶板名稱 "tabLevelTwo": "string", # 報表名稱 "reportName": "string", # 帳號 "account": "string", # 異動帳號 "modifyAccount": "string", # 異動類型 "modifyType": "string", # 帳號狀態 "accountStatus": "string", # 異動前內容 "contentBefore": "string", # 異動後內容 "contentAfter": "string", # 執行帳號 "exeAccount": "string", # 登入結果 "loginResult": "string", # 登入/異動時間 "loginModifyTime": "string", # 登出時間 "logoutTime": "string", # IP "ip": "string" } ], # 無使用此欄位 "totalItems": 0, # 無使用此欄位 "totalPages": 0 } ``` ## 匯出 Log 紀錄 /tipc/logExport/exportCSV ``` json Request: { # 開始時間 "startCreateTime": "2023/08/01 00:00:00", # 結束時間 "endCreateTime": "2023/09/30 23:59:59", # Log 類型 "recordTypes": [ "LoginRecord",# 登入紀錄 "RecordTabLevel0", # 儀表板異動-儀表板 "RecordTabLevel1", # 儀表板異動-主頁籤 "RecordTabLevel2", # 儀表板異動-次頁籤 "RecordChart", # 儀表板異動-報表 "RecordRole", # 角色異動紀錄 "RecordMember" # 使用者紀錄 ], # 關鍵字 "searchText": "developer" } Response: Response body Download file Response headers cache-control: no-cacheno-storemax-age=0must-revalidate connection: keep-alive content-disposition: attachment; filename=export.csv content-type: application/vnd.ms-excel;charset=UTF-8 date: Fri06 Oct 2023 07:32:42 GMT expires: 0 keep-alive: timeout=60 pragma: no-cache transfer-encoding: chunked vary: OriginAccess-Control-Request-MethodAccess-Control-Request-Headers x-content-type-options: nosniff x-frame-options: DENY x-xss-protection: 1; mode=block ```