Method: exchanges.publishers.list
Stay organized with collections
Save and categorize content based on your preferences.
HTTP request
GET https://dv360seller.googleapis.com/v1beta1/{parent=exchanges/*}/publishers
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters |
parent |
string
Required. The parent resource name. Example: "exchanges/123".
|
Query parameters
Parameters |
pageSize |
integer
Optional. The maximum number of items to return. Max allowed value is 50. If unspecified or more than 50, will use 50 as page size.
|
pageToken |
string
Optional. The nextPageToken value returned from a previous List request, if any.
|
filter |
string
Optional. Allows filtering by product properties. Supported syntax:
- Filter expressions are made up of one or more restrictions.
- Restrictions can be combined by
AND or OR logical operators. A sequence of restrictions implicitly uses AND .
- A restriction has the form of
<field> <operator> <value> .
- The operator must be
EQUALS (=) .
- Supported fields:
ExternalPublisherId
DisplayName
Status
Examples:
The length of this field should be no more than 500 characters.
|
Request body
The request body must be empty.
Response body
Response to list publishers.
If successful, the response body contains data with the following structure:
JSON representation |
{
"publishers": [
{
object (Publisher )
}
],
"nextPageToken": string
} |
Fields |
publishers[] |
object (Publisher )
Listed publishers. There will be a maximum number of items returned based on the pageSize field in the request.
|
nextPageToken |
string
Token to retrieve the next page of results, or empty if there are no more results in the list.
|
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/doubleclickbidmanager
For more information, see the OAuth 2.0 Overview.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-02-12 UTC.
[[["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-02-12 UTC."],[[["Lists publishers associated with a given exchange using the `GET` method."],["Allows filtering of publishers by `ExternalPublisherId`, `DisplayName`, and `Status`."],["Supports pagination with `pageSize` and `pageToken` to retrieve large result sets."],["Requires the `https://www.googleapis.com/auth/doubleclickbidmanager` OAuth scope for authorization."],["Response includes an array of publishers and a token for retrieving the next page of results."]]],["This document outlines the process for listing publishers via an API. It uses a `GET` HTTP request to a specified URL, including a required `parent` path parameter. Optional query parameters include `pageSize`, `pageToken`, and a `filter` for refining results. The request body must be empty. The successful response is a JSON object containing a list of `publishers` and a `nextPageToken` for pagination. This requires `https://www.googleapis.com/auth/doubleclickbidmanager` authorization scope.\n"]]