AdSense Management API . accounts . adclients

Instance Methods

close()

Close httplib2 connections.

getAdCode(accountId, adClientId, tagPartner=None)

Get Auto ad code for a given ad client.

list(accountId, maxResults=None, pageToken=None)

List all ad clients in the specified account.

list_next(previous_request, previous_response)

Retrieves the next page of results.

Method Details

close()
Close httplib2 connections.
getAdCode(accountId, adClientId, tagPartner=None)
Get Auto ad code for a given ad client.

Args:
  accountId: string, Account which contains the ad client. (required)
  adClientId: string, Ad client to get the code for. (required)
  tagPartner: string, Tag partner to include in the ad code snippet.

Returns:
  An object of the form:

    {
  "adCode": "A String", # The Auto ad code snippet. The ad code snippet.
  "ampBody": "A String", # The AMP Auto ad code snippet that goes in the body of an AMP page.
  "ampHead": "A String", # The AMP Auto ad code snippet that goes in the head of an AMP page.
  "kind": "adsense#adCode", # Kind this is, in this case adsense#adCode.
}
list(accountId, maxResults=None, pageToken=None)
List all ad clients in the specified account.

Args:
  accountId: string, Account for which to list ad clients. (required)
  maxResults: integer, The maximum number of ad clients to include in the response, used for paging.
  pageToken: string, A continuation token, used to page through ad clients. To retrieve the next page, set this parameter to the value of "nextPageToken" from the previous response.

Returns:
  An object of the form:

    {
  "etag": "A String", # ETag of this response for caching purposes.
  "items": [ # The ad clients returned in this list response.
    {
      "arcOptIn": True or False, # Whether this ad client is opted in to ARC.
      "id": "A String", # Unique identifier of this ad client.
      "kind": "adsense#adClient", # Kind of resource this is, in this case adsense#adClient.
      "productCode": "A String", # This ad client's product code, which corresponds to the PRODUCT_CODE report dimension.
      "supportsReporting": True or False, # Whether this ad client supports being reported on.
    },
  ],
  "kind": "adsense#adClients", # Kind of list this is, in this case adsense#adClients.
  "nextPageToken": "A String", # Continuation token used to page through ad clients. To retrieve the next page of results, set the next request's "pageToken" value to this.
}
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.