> ## 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 Activities

Retrieve a list of activities for a specific customer's account and application.

<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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
  | ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Application Name | Application name for which the events are to be retrieved.<br /><br />For more information about the available applications, refer to [Google Admin Console's documentation](https://developers.google.com/admin-sdk/reports/reference/rest/v1/activities/list#ApplicationName).                                                                                                                                                                                                                                                                                                                                                                      |
  | 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. Each event name is related to a specific Google Workspace service or feature.<br /><br />For more information on available Event Names, please refer to the [list of application names](https://developers.google.com/workspace/admin/reports/reference/rest/v1/activities/list#ApplicationName).<br /><br />Click on each application name activity events link to view the corresponding event name. For example, for the `calendar` application, the event name is `change_calendar_acls`.                                                                                                                  |
  | 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": "admin#reports#activities",
	"etag": "\"HT17nNOKg3qK25zh6p3L6mirrcELRXThl-03egjpiRg/bQC1fjTKt9X1xizuS--qchBBszd\"",
	"items": [
		{
			"kind": "admin#reports#activity",
			"id": {
				"time": "2023-07-05T05:32:34.210Z",
				"uniqueQualifier": "-8094899614681261977",
				"applicationName": "admin",
				"customerId": "C00t3zpd2"
			},
			"etag": "\"HT17nNOKg3qK25zh6p3L6mirrcELRXThl-03egjpiRg/7neN4KVdiWsCt5d7O2Xr4_ZVb0y\"",
			"actor": {
				"callerType": "USER",
				"email": "blink@test.com",
				"profileId": "111333624104757398244"
			},
			"events": [
				{
					"type": "DOMAIN_SETTINGS",
					"name": "REMOVE_APPLICATION",
					"parameters": [
						{
							"name": "APP_ID",
							"value": "37363080244"
						},
						{
							"name": "APPLICATION_NAME",
							"value": "Blink Test"
						}
					]
				}
			]
		}
	]
}
```

## Workflow Library Example

[List Activities with Google Admin Console and Send Results Via Email](https://library.blinkops.com/workflows/list-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-activities-with-google-admin-console-and-send-results-via-email/canvas" />
</div>
