Search + K

Command Palette

Search for a command to run...

Sign In

analyticsadmin.accounts.searchChangeHistoryEvents

POST /v1beta/{+account}:searchChangeHistoryEvents
Copy endpoint
https://analyticsadmin.googleapis.com/

Searches through all changes to an account or its children given the specified set of filters. Only returns the subset of changes supported by the API. The UI may return additional changes.

Parameters

path Path Parameters

Name Type
account required

Required. The account resource for which to return change history resources. Format: accounts/{account} Example: accounts/100

string

query Query Parameters

Name Type
oauth_token

OAuth 2.0 token for the current user.

string
callback

JSONP

string
fields

Selector specifying which fields to include in a partial response.

string
upload_protocol

Upload protocol for media (e.g. "raw", "multipart").

string
alt

Data format for response.

"json" | "media" | "proto"
access_token

OAuth access token.

string
key

API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.

string
uploadType

Legacy upload protocol for media (e.g. "media", "multipart").

string
$.xgafv

V1 error format.

"1" | "2"
quotaUser

Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.

string
prettyPrint

Returns response with indentations and line breaks.

boolean

Request Body

application/json
interface GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsRequest {
action?: ("ACTION_TYPE_UNSPECIFIED" | "CREATED" | "UPDATED" | "DELETED")[];
actorEmail?: string[];
earliestChangeTime?: string;
latestChangeTime?: string;
pageSize?: number;
pageToken?: string;
property?: string;
resourceType?: ("CHANGE_HISTORY_RESOURCE_TYPE_UNSPECIFIED" | "ACCOUNT" | "PROPERTY" | "FIREBASE_LINK" | "GOOGLE_ADS_LINK" | "GOOGLE_SIGNALS_SETTINGS" | "CONVERSION_EVENT" | "MEASUREMENT_PROTOCOL_SECRET" | "CUSTOM_DIMENSION" | "CUSTOM_METRIC" | "DATA_RETENTION_SETTINGS" | "DISPLAY_VIDEO_360_ADVERTISER_LINK" | "DISPLAY_VIDEO_360_ADVERTISER_LINK_PROPOSAL" | "DATA_STREAM" | "ATTRIBUTION_SETTINGS")[];
}

Responses

200 */*

Successful response

interface GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsResponse {
changeHistoryEvents?: GoogleAnalyticsAdminV1betaChangeHistoryEvent

A set of changes within a Google Analytics account or its child properties that resulted from the same cause. Common causes would be updates made in the Google Analytics UI, changes from customer support, or automatic Google Analytics system changes.

interface GoogleAnalyticsAdminV1betaChangeHistoryEvent {
actorType?: "ACTOR_TYPE_UNSPECIFIED" | "USER" | "SYSTEM" | "SUPPORT";
changeTime?: string;
changes?: GoogleAnalyticsAdminV1betaChangeHistoryChange[];
changesFiltered?: boolean;
id?: string;
userActorEmail?: string;
}
[]
;
nextPageToken?: string;
}