Lists advertisers that are accessible to the current user.
The order is defined by the orderBy
parameter.
A single partnerId
is required. Cross-partner listing is not supported.
HTTP request
GET https://displayvideo.googleapis.com/v2/advertisers
The URL uses gRPC Transcoding syntax.
Query parameters
partnerId
string ( int64
format)
Required. The ID of the partner that the fetched advertisers should all belong to. The system only supports listing advertisers for one partner at a time.
pageSize
integer
Requested page size. Must be between 1
and 200
. If unspecified will default to 100
.
pageToken
string
A token identifying a page of results the server should return. Typically, this is the value of nextPageToken
returned from the previous call to advertisers.list
method. If not specified, the first page of results will be returned.
orderBy
string
Field by which to sort the list. Acceptable values are:
-
displayName
(default) -
entityStatus
-
updateTime
The default sorting order is ascending. To specify descending order for a field, a suffix "desc" should be added to the field name. For example, displayName desc
.
filter
string
Allows filtering by advertiser fields.
Supported syntax:
- Filter expressions are made up of one or more restrictions.
- Restrictions can be combined by
AND
orOR
logical operators. - A restriction has the form of
{field} {operator} {value}
. - The
updateTime
field must use theGREATER THAN OR EQUAL TO (>=)
orLESS THAN OR EQUAL TO (<=)
operators. - All other fields must use the
EQUALS (=)
operator.
Supported fields:
-
advertiserId
-
displayName
-
entityStatus
-
updateTime
(input in ISO 8601 format, orYYYY-MM-DDTHH:MM:SSZ
)
Examples:
- All active advertisers under a partner:
entityStatus="ENTITY_STATUS_ACTIVE"
- All advertisers with an update time less than or equal to 2020-11-04T18:54:47Z (format of ISO 8601):
updateTime<="2020-11-04T18:54:47Z"
- All advertisers with an update time greater than or equal to 2020-11-04T18:54:47Z (format of ISO 8601):
updateTime>="2020-11-04T18:54:47Z"
The length of this field should be no more than 500 characters.
Reference our filter LIST
requests
guide for more information.
Request body
The request body must be empty.
Response body
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"advertisers"
:
[
{
object (
|
Fields | |
---|---|
advertisers[]
|
The list of advertisers. This list 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/display-video
For more information, see the OAuth 2.0 Overview .