Ad Exchange Seller API . accounts

Instance Methods

adclients()

Returns the adclients Resource.

alerts()

Returns the alerts Resource.

customchannels()

Returns the customchannels Resource.

metadata()

Returns the metadata Resource.

preferreddeals()

Returns the preferreddeals Resource.

reports()

Returns the reports Resource.

urlchannels()

Returns the urlchannels Resource.

get(accountId)

Get information about the selected Ad Exchange account.

list(pageToken=None, maxResults=None)

List all accounts available to this Ad Exchange account.

list_next(previous_request, previous_response)

Retrieves the next page of results.

Method Details

get(accountId)
Get information about the selected Ad Exchange account.

Args:
  accountId: string, Account to get information about. Tip: 'myaccount' is a valid ID. (required)

Returns:
  An object of the form:

    {
    "kind": "adexchangeseller#account", # Kind of resource this is, in this case adexchangeseller#account.
    "id": "A String", # Unique identifier of this account.
    "name": "A String", # Name of this account.
  }
list(pageToken=None, maxResults=None)
List all accounts available to this Ad Exchange account.

Args:
  pageToken: string, A continuation token, used to page through accounts. To retrieve the next page, set this parameter to the value of "nextPageToken" from the previous response.
  maxResults: integer, The maximum number of accounts to include in the response, used for paging.

Returns:
  An object of the form:

    {
    "nextPageToken": "A String", # Continuation token used to page through accounts. To retrieve the next page of results, set the next request's "pageToken" value to this.
    "items": [ # The accounts returned in this list response.
      {
        "kind": "adexchangeseller#account", # Kind of resource this is, in this case adexchangeseller#account.
        "id": "A String", # Unique identifier of this account.
        "name": "A String", # Name of this account.
      },
    ],
    "kind": "adexchangeseller#accounts", # Kind of list this is, in this case adexchangeseller#accounts.
    "etag": "A String", # ETag of this response for caching purposes.
  }
list_next(previous_request, previous_response)
Retrieves the next page of results.

Args:
  previous_request: The request for the previous page. (required)
  previous_response: The response from the request for the previous page. (required)

Returns:
  A request object that you can call 'execute()' on to request the next
  page. Returns None if there are no more items in the collection.