> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Admin Activities

Retrieve a list of admin activities.

<Note>
  External Documentation

  To learn more, visit the [Google Admin Console documentation](https://developers.google.com/admin-sdk/reports/reference/rest/v1/activities/list).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
  | ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | End Time         | Set the end of the range of time shown in the report.  The default value is the approximate time of the action execution.<br /><br />**Note**: For `Gmail` application name, `Start Time` and `End Time` must be provided and the difference must not be greater than `30` days.                                                                                                                                                                                                                                                                                                                                                                      |
  | Event Name       | The event name to view activities for.<br /><br />For more information about each event name, see the [list of event names for the Admin application](https://developers.google.com/admin-sdk/reports/v1/appendix/activity/admin-event-names).                                                                                                                                                                                                                                                                                                                                                                                                        |
  | Filters          | A comma-separated list composed of event parameters manipulated by relational operators. For example:<br /><br />`{parameter1 name}{relational operator}{parameter1 value},{parameter2 name}{relational operator}{parameter2 value},...`<br /><br />These event parameters are associated with a specific `Event Name`. If the  filter's parameter doesn't belong to the specified `Event Name`, an empty report is returned.<br /><br />For more information about the filters parameter, refer to [Google Admin Console's documentation](https://developers.google.com/workspace/admin/reports/reference/rest/v1/activities/list#query-parameters). |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
  | Start Time       | Set the beginning of the range of time shown in the report.<br /><br /> **Note**: For `Gmail` application name, `Start Time` and `End Time` must be provided and the difference must not be greater than `30` days.                                                                                                                                                                                                                                                                                                                                                                                                                                   |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter               | Description                                                                                                                                                                                                                                                                                                                  |
  | ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Delegated User Override | Perform the action on behalf of another user, overriding the delegated user defined in the connection.<br /><br />If not specified, the delegated user is the one provided in the connection.<br /><br />Has no effect when using an OAuth connection.<br /><br />NOTE: the connection details are not edited by this input. |
  | Max Results             | The maximum number of results to retrieve in a single execution.                                                                                                                                                                                                                                                             |
  | Page Token              | A page token, received from a previous execution. Provide this to retrieve the subsequent page. When paginating, all other parameters provided must match the execution that provided the page token.                                                                                                                        |
</div>

## Example Output

```json theme={"dark"}
{
  "kind": string,
  "etag": string,
  "ownerDomain": string,
  "ipAddress": string,
  "events": [
    {
      "type": string,
      "name": string,
      "parameters": [
        {
          "messageValue": {
            "parameter": [
              {}
            ]
          },
          "name": string,
          "value": string,
          "multiValue": [
            string
          ],
          "intValue": string,
          "multiIntValue": [
            string
          ],
          "boolValue": boolean,
          "multiMessageValue": [
            {
              "parameter": [
                {}
              ]
            }
          ]
        }
      ],
      "resourceIds": [
        string
      ]
    }
  ],
  "id": {
    "time": string,
    "uniqueQualifier": string,
    "applicationName": string,
    "customerId": string
  },
  "actor": {
    "profileId": string,
    "email": string,
    "callerType": string,
    "key": string,
    "applicationInfo": {
      "oauthClientId": string,
      "applicationName": string,
      "impersonation": boolean
    }
  },
  "networkInfo": {
    {
      "ipAsn": [
        integer
      ],
      "regionCode": string,
      "subdivisionCode": string
    }
  },
  "resourceDetails": [
    {
      "id": string,
      "title": string,
      "type": string,
      "appliedLabels": [
        {}
      ],
      "relation": string
    }
  ]
}
```

## Workflow Library Example

[List Admin Activities with Google Admin Console and Send Results Via Email](https://library.blinkops.com/workflows/list-admin-activities-with-google-admin-console-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-admin-activities-with-google-admin-console-and-send-results-via-email/canvas" />
</div>
