IntegrationsGoogle workspaceActions
List Google Workspace audit activities
List Admin SDK Reports audit activities with bounded pages.
reports.activities.list · Google Workspace · v1
Details
Scopes
https://www.googleapis.com/auth/admin.reports.audit.readonly
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
user_key | string | Yes | minLength 1; maxLength 320 |
application_name | string | Yes | enum admin | calendar | drive | gmail | login | token | user_accounts | chrome | meet | mobile | saml | groups | chat | rules | context_aware_access |
page_size | integer | No | minimum 1; maximum 1000 |
page_token | string | No | minLength 1; maxLength 512 |
start_time | string | No | minLength 10; maxLength 64 |
end_time | string | No | minLength 10; maxLength 64 |
event_name | string | No | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
items | array<object> | Yes | maxItems 1000 |
items[] | object | Yes | additionalProperties false |
items[].time | string | Yes | maxLength 64 |
items[].unique_qualifier | string | Yes | maxLength 256 |
items[].application_name | string | Yes | maxLength 64 |
items[].actor_email | string | No | maxLength 320 |
items[].events | array<object> | No | maxItems 50 |
items[].events[] | object | Yes | additionalProperties false |
items[].events[].name | string | Yes | maxLength 128 |
items[].events[].type | string | Yes | maxLength 128 |
next_page_token | string | No | maxLength 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"
]
}