AI-generated Key Takeaways
-
The
queries.reports.listmethod lists reports generated by a specific query. -
The HTTP request uses a GET method with the query ID included in the path.
-
Path parameters require the
queryId, and query parameters allow for pagination and sorting. -
The request body must be empty, and the response body contains a list of reports and a token for the next page of results.
-
This method requires the
https://www.googleapis.com/auth/doubleclickbidmanagerauthorization scope.
- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Try it!
Lists reports generated by the provided query.
HTTP request
GET https://doubleclickbidmanager.googleapis.com/v2/queries/{queryId}/reports
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
queryId
|
Required. The ID of the query that generated the reports. |
Query parameters
pageSize
integer
Maximum number of results per page. Must be between 1
and 100
. Defaults to 100
if unspecified.
pageToken
string
A token identifying which page of results the server should return. Typically, this is the value of nextPageToken
returned from the previous call to the queries.reports.list
method. If unspecified, the first page of results is returned.
orderBy
string
Field to sort the list by. Accepts the following values:
-
key.reportId(default)
The default sorting order is ascending. To specify descending order for a field, add the suffix desc
to the field name. For example, key.reportId desc
.
Request body
The request body must be empty.
Response body
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"reports"
:
[
{
object (
|
| Fields | |
|---|---|
reports[]
|
The list of reports. This field will be absent if empty. |
nextPageToken
|
A token to retrieve the next page of results. Pass this value in the |
Authorization scopes
Requires the following OAuth scope:
-
https://www.googleapis.com/auth/doubleclickbidmanager
For more information, see the OAuth 2.0 Overview .

