Generates and returns a report immediately.

Scopes

You will need authorization for the https://www.googleapis.com/auth/doubleclicksearch scope to make a valid call.

If unset, the scope for this method defaults to https://www.googleapis.com/auth/doubleclicksearch. You can set the scope for this method like this: doubleclicksearch2 --scope <scope> reports generate ...

Required Request Value

The request value is a data-structure with various fields. Each field may be a simple scalar or another data-structure. In the latter case it is advised to set the field-cursor to the data-structure's field to specify values more concisely.

For example, a structure like this:

ReportRequest:
  download-format: string
  include-deleted-entities: boolean
  include-removed-entities: boolean
  max-rows-per-file: integer
  report-scope:
    ad-group-id: string
    ad-id: string
    advertiser-id: string
    agency-id: string
    campaign-id: string
    engine-account-id: string
    keyword-id: string
  report-type: string
  row-count: integer
  start-row: integer
  statistics-currency: string
  time-range:
    changed-attributes-since-timestamp: string
    changed-metrics-since-timestamp: string
    end-date: string
    start-date: string
  verify-single-time-zone: boolean

can be set completely with the following arguments which are assumed to be executed in the given order. Note how the cursor position is adjusted to the respective structures, allowing simple field names to be used most of the time.

  • -r . download-format=no
    • Format that the report should be returned in. Currently csv or tsv is supported.
  • include-deleted-entities=true
    • Determines if removed entities should be included in the report. Defaults to false. Deprecated, please use includeRemovedEntities instead.
  • include-removed-entities=false
    • Determines if removed entities should be included in the report. Defaults to false.
  • max-rows-per-file=99
    • Asynchronous report only. The maximum number of rows per report file. A large report is split into many files based on this field. Acceptable values are 1000000 to 100000000, inclusive.
  • report-scope ad-group-id=takimata
    • DS ad group ID.
  • ad-id=amet.
    • DS ad ID.
  • advertiser-id=duo
    • DS advertiser ID.
  • agency-id=ipsum
    • DS agency ID.
  • campaign-id=gubergren
    • DS campaign ID.
  • engine-account-id=lorem
    • DS engine account ID.
  • keyword-id=gubergren

    • DS keyword ID.
  • .. report-type=eos

    • Determines the type of rows that are returned in the report. For example, if you specify reportType: keyword, each row in the report will contain data about a keyword. See the Types of Reports reference for the columns that are available for each type.
  • row-count=97
    • Synchronous report only. The maximum number of rows to return; additional rows are dropped. Acceptable values are 0 to 10000, inclusive. Defaults to 10000.
  • start-row=84
    • Synchronous report only. Zero-based index of the first row to return. Acceptable values are 0 to 50000, inclusive. Defaults to 0.
  • statistics-currency=ipsum
    • Specifies the currency in which monetary will be returned. Possible values are: usd, agency (valid if the report is scoped to agency or lower), advertiser (valid if the report is scoped to * advertiser or lower), or account (valid if the report is scoped to engine account or lower).
  • time-range changed-attributes-since-timestamp=invidunt
    • Inclusive UTC timestamp in RFC format, e.g., 2013-07-16T10:16:23.555Z. See additional references on how changed attribute reports work.
  • changed-metrics-since-timestamp=amet
    • Inclusive UTC timestamp in RFC format, e.g., 2013-07-16T10:16:23.555Z. See additional references on how changed metrics reports work.
  • end-date=duo
    • Inclusive date in YYYY-MM-DD format.
  • start-date=ipsum

    • Inclusive date in YYYY-MM-DD format.
  • .. verify-single-time-zone=false

    • If true, the report would only be created if all the requested stat data are sourced from a single timezone. Defaults to false.

About Cursors

The cursor position is key to comfortably set complex nested structures. The following rules apply:

  • The cursor position is always set relative to the current one, unless the field name starts with the . character. Fields can be nested such as in -r f.s.o .
  • The cursor position is set relative to the top-level structure if it starts with ., e.g. -r .s.s
  • You can also set nested fields without setting the cursor explicitly. For example, to set a value relative to the current cursor position, you would specify -r struct.sub_struct=bar.
  • You can move the cursor one level up by using ... Each additional . moves it up one additional level. E.g. ... would go three levels up.

Optional Output Flags

The method's return value a JSON encoded structure, which will be written to standard output by default.

  • -o out
    • out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output.

Optional General Properties

The following properties can configure any call, and are not specific to this method.

  • -p $-xgafv=string

    • V1 error format.
  • -p access-token=string

    • OAuth access token.
  • -p alt=string

    • Data format for response.
  • -p callback=string

    • JSONP
  • -p fields=string

    • Selector specifying which fields to include in a partial response.
  • -p key=string

    • API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
  • -p oauth-token=string

    • OAuth 2.0 token for the current user.
  • -p pretty-print=boolean

    • Returns response with indentations and line breaks.
  • -p quota-user=string

    • Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
  • -p upload-type=string

    • Legacy upload protocol for media (e.g. "media", "multipart").
  • -p upload-protocol=string

    • Upload protocol for media (e.g. "raw", "multipart").