Method: exchanges.inventorySources.list

Lists inventory sources.

HTTP request

GET https://dv360seller.googleapis.com/v1beta1/{parent=exchanges/*}/inventorySources

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. Defaults to 100. Max allowed value is 500. If unspecified, 100 will be default page size. If pageSize is more than 500, will use 500 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 logical operators.
  • A restriction has the form of <field> <operator> <value>.
  • The operator must be > or '>=' for last_modified_time
  • Supported fields:
    • last_modified_time

Examples:

  • Get InventorySource with last_modified_time greater than 04/21/2023 11:30 last_modified_time>"2023-04-21T11:30:00-04:00"

If last_modified_time is not specified, the value will be default to -7 days timestamp.

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 inventory sources.

If successful, the response body contains data with the following structure:

JSON representation
{
  "inventorySources": [
    {
      object (InventorySource)
    }
  ],
  "nextPageToken": string
}
Fields
inventorySources[]

object (InventorySource)

Listed inventory sources. 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.