Method: projects.locations.apps.changelogs.list

Lists the changelogs of the specified app.

HTTP request

GET https://ces.googleapis.com/v1beta/{parent=projects/*/locations/*/apps/*}/changelogs

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The resource name of the app to list changelogs from.

Query parameters

Parameters
pageSize

integer

Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.

pageToken

string

Optional. The nextPageToken value returned from a previous list AgentService.ListChangelogs call.

filter

string

Optional. Filter to be applied when listing the changelogs. See https://google.aip.dev/160 for more details.

The filter string can be used to filter by action, resourceType, resourceName, author, and createTime. The : comparator can be used for case-insensitive partial matching on string fields, while = performs an exact case-sensitive match.

Examples: * action:update (case-insensitive partial match) * action="Create" (case-sensitive exact match) * resourceType:agent * resourceName:my-agent * author:me@example.com * createTime > "2025-01-01T00:00:00Z" * createTime <= "2025-01-01T00:00:00Z" AND resourceType:tool

orderBy

string

Optional. Field to sort by. Only "name" and "createTime" is supported. See https://google.aip.dev/132#ordering for more details.

Request body

The request body must be empty.

Response body

Response message for AgentService.ListChangelogs.

If successful, the response body contains data with the following structure:

JSON representation
{
  "changelogs": [
    {
      object (Changelog)
    }
  ],
  "nextPageToken": string
}
Fields
changelogs[]

object (Changelog)

The list of changelogs.

nextPageToken

string

A token that can be sent as ListChangelogsRequest.page_token to retrieve the next page. Absence of this field indicates there are no subsequent pages.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

IAM Permissions

Requires the following IAM permission on the parent resource:

  • ces.changelogs.list

For more information, see the IAM documentation.