Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

List Google Workspace audit activities

List Admin SDK Reports audit activities with bounded pages.

Agent markdown

reports.activities.list · Google Workspace · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • https://www.googleapis.com/auth/admin.reports.audit.readonly

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
user_keystringYesminLength 1; maxLength 320
application_namestringYesenum admin | calendar | drive | gmail | login | token | user_accounts | chrome | meet | mobile | saml | groups | chat | rules | context_aware_access
page_sizeintegerNominimum 1; maximum 1000
page_tokenstringNominLength 1; maxLength 512
start_timestringNominLength 10; maxLength 64
end_timestringNominLength 10; maxLength 64
event_namestringNominLength 1; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
itemsarray<object>YesmaxItems 1000
items[]objectYesadditionalProperties false
items[].timestringYesmaxLength 64
items[].unique_qualifierstringYesmaxLength 256
items[].application_namestringYesmaxLength 64
items[].actor_emailstringNomaxLength 320
items[].eventsarray<object>NomaxItems 50
items[].events[]objectYesadditionalProperties false
items[].events[].namestringYesmaxLength 128
items[].events[].typestringYesmaxLength 128
next_page_tokenstringNomaxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "user_key": {
      "type": "string",
      "minLength": 1,
      "maxLength": 320
    },
    "application_name": {
      "type": "string",
      "enum": [
        "admin",
        "calendar",
        "drive",
        "gmail",
        "login",
        "token",
        "user_accounts",
        "chrome",
        "meet",
        "mobile",
        "saml",
        "groups",
        "chat",
        "rules",
        "context_aware_access"
      ]
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 1000
    },
    "page_token": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    },
    "start_time": {
      "type": "string",
      "minLength": 10,
      "maxLength": 64
    },
    "end_time": {
      "type": "string",
      "minLength": 10,
      "maxLength": 64
    },
    "event_name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "user_key",
    "application_name"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "time": {
            "type": "string",
            "maxLength": 64
          },
          "unique_qualifier": {
            "type": "string",
            "maxLength": 256
          },
          "application_name": {
            "type": "string",
            "maxLength": 64
          },
          "actor_email": {
            "type": "string",
            "maxLength": 320
          },
          "events": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "name": {
                  "type": "string",
                  "maxLength": 128
                },
                "type": {
                  "type": "string",
                  "maxLength": 128
                }
              },
              "required": [
                "name",
                "type"
              ]
            },
            "maxItems": 50
          }
        },
        "required": [
          "time",
          "unique_qualifier",
          "application_name"
        ]
      },
      "maxItems": 1000
    },
    "next_page_token": {
      "type": "string",
      "maxLength": 512
    }
  },
  "required": [
    "items"
  ]
}