Search Ads 360 API . savedColumns

Instance Methods

close()

Close httplib2 connections.

list(agencyId, advertiserId, x__xgafv=None)

Retrieve the list of saved columns for a specified advertiser.

Method Details

close()
Close httplib2 connections.
list(agencyId, advertiserId, x__xgafv=None)
Retrieve the list of saved columns for a specified advertiser.

Args:
  agencyId: string, DS ID of the agency. (required)
  advertiserId: string, DS ID of the advertiser. (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # A list of saved columns. Advertisers create saved columns to report on Floodlight activities, Google Analytics goals, or custom KPIs. To request reports with saved columns, you'll need the saved column names that are available from this list.
  "items": [ # The saved columns being requested.
    { # A saved column
      "kind": "A String", # Identifies this as a SavedColumn resource. Value: the fixed string doubleclicksearch#savedColumn.
      "savedColumnName": "A String", # The name of the saved column.
      "type": "A String", # The type of data this saved column will produce.
    },
  ],
  "kind": "A String", # Identifies this as a SavedColumnList resource. Value: the fixed string doubleclicksearch#savedColumnList.
}