- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- RecentUpdateEvent
- UpdateType
- Try it!
Lists update events for eligible apps in the given time range.
HTTP request
GET https://androidpublisher.googleapis.com/androidpublisher/v3/appstorecatalog/{appStorePackageName}/recentUpdateEvents
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
appStorePackageName |
Required. The package name of the app store on behalf of which the request is made. |
Query parameters
| Parameters | |
|---|---|
startTime |
Required. The start time of the range (inclusive). Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
endTime |
Required. The end time of the range (exclusive). Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
pageSize |
Optional. The maximum number of update events to return. The service may return fewer than this value. If unspecified, at most 100 update events will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. |
pageToken |
Optional. A page token, received from a previous When paginating, all other parameters provided to |
Request body
The request body must be empty.
Response body
Response message for recentUpdateEvents.list.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"recentUpdateEvents": [
{
object ( |
| Fields | |
|---|---|
recentUpdateEvents[] |
The list of recent update events. |
nextPageToken |
A token, which can be sent as |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/androidpublisher
RecentUpdateEvent
A recent update event.
| JSON representation |
|---|
{
"playAppPackageName": string,
"eventTime": string,
"updateType": enum ( |
| Fields | |
|---|---|
playAppPackageName |
The package name of the app. |
eventTime |
The timestamp of the update. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
updateType |
The type of the update event. |
UpdateType
The type of update event.
| Enums | |
|---|---|
UPDATE_TYPE_UNSPECIFIED |
Default value. This value is not used. |
MODIFICATION |
The app was modified. |
DELETION |
The app stopped being eligible for catalog inclusion or was removed from the Play Store. |