advertisingChannelSubType

2016-04-18 Thread Satendra Maurya
Hi, how to set advertisingChannelSubType like Marketing objectives , No marketing objective,standard, all feature,Mobile app installs,Dynamic Search Ads etc to campaign while there are only 4 possible value which i can pass to advertisingChannelSubType according to adwords api documantation.

Re: CampaignCriterionService for all location

2016-03-10 Thread Satendra Maurya
Hi, if i don't specify language for all languages and location for all countries it through an error : [NotEmptyError.EMPTY_LIST @ operations] I think $campaignCriteria is not set when we trying to mutate. so that its give error.so how to target campaign for all location and language $c

CampaignCriterionService for all location

2016-03-09 Thread Satendra Maurya
Hi, how to target our campaign for all location $place = new \Location(); $place->id = $locationId; $campaignCriteria[] = new \CampaignCriterion($result->value[0]->id, null, $place); what is location Id for all location or how to tagret campaign for all location. thanks you -- -- =~=~=~=~=

Re: CAMPAIGN_PERFORMANCE_REPORT

2016-03-08 Thread Satendra Maurya
Hi Anthony, i am sending xml report which have row element but all campaign report do not have row element and its value as i specified in above question. thanks On Tuesday, March 8, 2016 at 8:38:59 PM UTC+5:30, Anthony Madrigal wrote: > > Hi Satendra, > > Could you please specify what row e

CAMPAIGN_PERFORMANCE_REPORT

2016-03-07 Thread Satendra Maurya
i am trying to download report for all campaign of all account in xml format . my code is here : // $campaigns is all campaign foreach ($campaigns as $campaign) { $filePath = realpath(dirname(__FILE__)) . "/../../frontend/web/reports/" . $campaign->name . '_' . $campaign->id . '

set NegativeCampaignCriterion for location using adword api php

2016-03-03 Thread Satendra Maurya
how to set exclude location for campaign. i tried to found out it . i found this $negativeCriterion = new \NegativeCampaignCriterion(); $negativeCriterion->campaignId = $result->value[0]->id; $negativeCriterion->criterion = $location; but i cannot understand how to pass location here. could yo