Method: buyers.auctionPackages.list
Stay organized with collections
Save and categorize content based on your preferences.
AI-generated Key Takeaways
Auction packages can be listed by buyers using the URL path /v1/buyers/{accountId}/auctionPackages and by bidders using the URL path /v1/bidders/{accountId}/auctionPackages.
The request to list auction packages is an HTTP GET request to the URL https://authorizedbuyersmarketplace.googleapis.com/v1/{parent=buyers/*}/auctionPackages.
Path parameters include parent, specifying the buyer or bidder account.
Query parameters allow for controlling the page size, retrieving subsequent pages using a page token, and optionally filtering or sorting the results based on supported columns.
The request body must be empty, and a successful response body contains an instance of ListAuctionPackagesResponse.
The listing of auction packages requires the OAuth scope https://www.googleapis.com/auth/authorized-buyers-marketplace.
List the auction packages. Buyers can use the URL path "/v1/buyers/{accountId}/auctionPackages" to list auction packages for the current buyer and its clients. Bidders can use the URL path "/v1/bidders/{accountId}/auctionPackages" to list auction packages for the bidder, its media planners, its buyers, and all their clients.
HTTP request
GET https://authorizedbuyersmarketplace.googleapis.com/v1/{parent=buyers/*}/auctionPackages
Required. Name of the parent buyer that can access the auction package. Format: buyers/{accountId}. When used with a bidder account, the auction packages that the bidder, its media planners, its buyers and clients are subscribed to will be listed, in the format bidders/{accountId}.
Query parameters
Parameters
pageSize
integer
Requested page size. The server may return fewer results than requested. Max allowed page size is 500.
Optional. Optional query string using the Cloud API list filtering syntax. Only supported when parent is bidder. Supported columns for filtering are:
displayName
createTime
updateTime
eligibleSeatIds
orderBy
string
Optional. An optional query string to sort auction packages using the Cloud API sorting syntax. If no sort order is specified, results will be returned in an arbitrary order. Only supported when parent is bidder. Supported columns for sorting are:
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-06-12 UTC."],[],["Buyers and bidders can list auction packages using the `GET` HTTP request to the specified URLs, differing by whether the parent is a buyer or a bidder account. The request requires a `parent` path parameter, formatted as `buyers/{accountId}` or `bidders/{accountId}`. Optional query parameters include `pageSize`, `pageToken`, `filter` and `orderBy`, for pagination, filtering, and sorting respectively, only applicable for bidders. The request body is empty, and a successful response contains a `ListAuctionPackagesResponse`. Requires `https://www.googleapis.com/auth/authorized-buyers-marketplace` authorization scope.\n"]]