Page Summary
-
The page provides documentation for listing publishers via an HTTP GET request.
-
The request requires a parent resource name in the path parameters.
-
Optional query parameters include
pageSize,pageToken, andfilter. -
The request body must be empty.
-
The response body contains a list of publishers and a
nextPageTokenfor pagination.
- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Examples
- Try it!
Lists publishers.
HTTP request
GET https://dv360seller.googleapis.com/v1beta1/{parent=exchanges/*}/publishers
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
parent
|
Required. The parent resource name. Example: "exchanges/123". |
Query 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
ANDorORlogical operators. A sequence of restrictions implicitly usesAND. - A restriction has the form of
<field> <operator> <value>. - The operator must be
EQUALS (=). - Supported fields:
-
ExternalPublisherId -
DisplayName -
Status
-
Examples:
-
Get Publishers with status set to Active
status=DISCOVERY_OBJECT_STATUS_ACTIVE -
Get Orders with display name of "display name"
displayName="display name"
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 (
|
| Fields | |
|---|---|
publishers[]
|
Listed publishers. There will be a maximum number of items returned based on the pageSize field in the request. |
nextPageToken
|
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 .

