Lists inventory sources that are accessible to the current user.
The order is defined by the orderBy parameter. If a filter by entityStatus is not specified, inventory sources with entity status ENTITY_STATUS_ARCHIVED will not be included in the results.
HTTP request
GET https://displayvideo.googleapis.com/v1/inventorySources
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 inventorySources.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)
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 inventory source fields.
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}.
All fields must use the EQUALS (=) operator.
Supported fields:
status.entityStatus
commitment
deliveryMethod
rateDetails.rateType
exchange
Examples:
All active inventory sources: status.entityStatus="ENTITY_STATUS_ACTIVE"
Inventory sources belonging to Google Ad Manager or Rubicon exchanges: exchange="EXCHANGE_GOOGLE_AD_MANAGER" OR exchange="EXCHANGE_RUBICON"
The length of this field should be no more than 500 characters.
Union parameter accessor. Required. Identifies which DV360 entity the request is being made within. The LIST request will only return inventory source entities that are accessible to the DV360 entity identified within the accessor. accessor can be only one of the following:
A token to retrieve the next page of results. Pass this value in the pageToken field in the subsequent call to inventorySources.list method to retrieve the next page of results.
[[["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 2024-09-18 UTC."],[[["Lists inventory sources accessible to the current user, ordered by `orderBy` parameter and excluding archived sources unless specified in the `filter`."],["The API request is a `GET` request to `https://displayvideo.googleapis.com/v1/inventorySources` with optional query parameters for pagination, sorting, and filtering."],["Request body should be empty, and the response will contain a list of inventory sources and a token for retrieving the next page of results."],["Authorization requires the `https://www.googleapis.com/auth/display-video` OAuth scope."]]],["This document details how to use the Display & Video 360 API to list accessible inventory sources. Users send a `GET` request to the specified URL, with optional query parameters for `pageSize`, `pageToken`, `orderBy`, and `filter`, to refine the results. The request must identify the accessible DV360 entity via the required union parameter `accessor` which can be a `partnerId` or `advertiserId`. The response contains a list of `inventorySources` and a `nextPageToken` for pagination. Archived inventory sources are excluded unless specified by a filter. The request body must be empty, and authorization requires a specific OAuth scope.\n"]]