AI-generated Key Takeaways
-
Lists queries created by the current user with support for pagination and sorting.
-
Allows specification of maximum results per page (
pageSize
) and retrieval of specific pages using tokens (pageToken
). -
Enables sorting by query ID or metadata title, with options for ascending or descending order (
orderBy
). -
Requires authorization with the
https://www.googleapis.com/auth/doubleclickbidmanager
scope. -
Provides a JSON response containing an array of queries and a token for retrieving subsequent pages.
Lists queries created by the current user.
HTTP request
GET https://doubleclickbidmanager.googleapis.com/v2/queries
The URL uses gRPC Transcoding syntax.
Query parameters
Parameters | |
---|---|
pageSize |
Maximum number of results per page. Must be between |
pageToken |
A token identifying which page of results the server should return. Typically, this is the value of |
orderBy |
Field to sort the list by. Accepts the following values:
The default sorting order is ascending. To specify descending order for a field, add the suffix |
Request body
The request body must be empty.
Response body
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"queries": [
{
object ( |
Fields | |
---|---|
queries[] |
The list of queries. 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.