gogol-doubleclick-search-0.0.1: Google DoubleClick Search SDK.

Copyright(c) 2015 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.Google.Resource.DoubleClickSearch.Conversion.Get

Contents

Description

Retrieves a list of conversions from a DoubleClick Search engine account.

See: DoubleClick Search API Reference for doubleclicksearch.conversion.get.

Synopsis

REST Resource

type ConversionGetResource = "doubleclicksearch" :> ("v2" :> ("agency" :> (Capture "agencyId" (Textual Int64) :> ("advertiser" :> (Capture "advertiserId" (Textual Int64) :> ("engine" :> (Capture "engineAccountId" (Textual Int64) :> ("conversion" :> (QueryParam "endDate" (Textual Int32) :> (QueryParam "rowCount" (Textual Int32) :> (QueryParam "startDate" (Textual Int32) :> (QueryParam "startRow" (Textual Word32) :> (QueryParam "adGroupId" (Textual Int64) :> (QueryParam "campaignId" (Textual Int64) :> (QueryParam "criterionId" (Textual Int64) :> (QueryParam "adId" (Textual Int64) :> (QueryParam "alt" AltJSON :> Get `[JSON]` ConversionList))))))))))))))))) Source

A resource alias for doubleclicksearch.conversion.get method which the ConversionGet request conforms to.

Creating a Request

data ConversionGet Source

Retrieves a list of conversions from a DoubleClick Search engine account.

See: conversionGet smart constructor.

Request Lenses

cgAdGroupId :: Lens' ConversionGet (Maybe Int64) Source

Numeric ID of the ad group.

cgEngineAccountId :: Lens' ConversionGet Int64 Source

Numeric ID of the engine account.

cgAgencyId :: Lens' ConversionGet Int64 Source

Numeric ID of the agency.

cgAdvertiserId :: Lens' ConversionGet Int64 Source

Numeric ID of the advertiser.

cgEndDate :: Lens' ConversionGet Int32 Source

Last date (inclusive) on which to retrieve conversions. Format is yyyymmdd.

cgCampaignId :: Lens' ConversionGet (Maybe Int64) Source

Numeric ID of the campaign.

cgCriterionId :: Lens' ConversionGet (Maybe Int64) Source

Numeric ID of the criterion.

cgStartDate :: Lens' ConversionGet Int32 Source

First date (inclusive) on which to retrieve conversions. Format is yyyymmdd.

cgStartRow :: Lens' ConversionGet Word32 Source

The 0-based starting index for retrieving conversions results.

cgAdId :: Lens' ConversionGet (Maybe Int64) Source

Numeric ID of the ad.

cgRowCount :: Lens' ConversionGet Int32 Source

The number of conversions to return per call.