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

# New Admin Activity

Triggers a workflow on every new specific admin event. This trigger is based on the [list activities of admin application method](https://developers.google.com/admin-sdk/reports/reference/rest/v1/activities/list?apix_params=%7B%22userKey%22%3A%22all%22%2C%22applicationName%22%3A%22admin%22%7D).

For more information, please refer to the [Reports API - Admin Activity Report Event Names](https://developers.google.com/admin-sdk/reports/v1/appendix/activity/admin-event-names).

**Endpoint**: `https://admin.googleapis.com/admin/reports/v1/activity/users/all/applications/admin`

<Note>
  Workflows with this trigger check for new events **every 5 minutes by default**. You can adjust this interval in the Trigger settings.
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter  | Description                                                                                                                                                                |
  | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Event Name | The name of the event being queried by the API. Each event name is related to a specific Google Workspace service or feature which the API organizes into types of events. |
</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. |
</div>

## Sample Event

```json theme={"dark"}
{
  "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"
        }
      ]
    }
  ]
}
```
