Hi Steve, Was the conversion type you're uploading to enabled *at the time of the click*? According to the docs for that error it's caused by:
Cannot process clicks that occurred when none of the effective conversion > types in the account were enabled, to generate conversions. Are you only having trouble uploading conversions for clicks that occurred while the conversion types were disabled/deleted, or are you also having trouble uploading conversions for clicks that occurred *after* you re-enabled the conversion type? Thanks, Josh, AdWords API Team On Thursday, November 6, 2014 10:02:00 AM UTC-5, Nypo77 wrote: > > Hello dear community, > > My tool is uplaoding offline conversions to client's adwords account. For > quite a time and for many account this is working nicely except for a > recent client. > > When the user activate this feature in my tool I automatically create an > offline conversion type: > > $uploadConversion = new UploadConversion(); > $uploadConversion->category = 'DEFAULT'; > $uploadConversion->name = 'Call Conversion - '.$host; > $uploadConversion->viewthroughLookbackWindow = 30; > $uploadConversion->ctcLookbackWindow = 90; > > $uploadConversionOperation = new \ConversionTrackerOperation(); > $uploadConversionOperation->operator = 'ADD'; > $uploadConversionOperation->operand = $uploadConversion; > > $uploadConversionOperations = > array($uploadConversionOperation); > > $result = > $conversionTrackerService->mutate($uploadConversionOperations); > > This worked well, the client could see the conversion type appearing in > his account using OfflineConversionFeedService: > > $feed = new \OfflineConversionFeed(); > $feed->googleClickId = $gClId; > $feed->conversionName = 'Call Conversion - '.$host; > $feed->conversionTime = $conversionTime." > ".$this->getAdwordsTimeZone(); // startCall + timezone > $feed->conversionValue = $conversionValue; // revenue > > $offlineConversionOperation = new > \OfflineConversionFeedOperation(); > $offlineConversionOperation->operator = 'ADD'; > $offlineConversionOperation->operand = $feed; > > // add to main array > $offlineConversionOperations[] = $offlineConversionOperation; > > $result = > $offlineConversionService->mutate($offlineConversionOperations); > > > Then I started uloading the offline conversions and began to receive: > OfflineConversionError.CLICK_MISSING_CONVERSION_LABEL > @ operations[XXX].operand > > The client deleted the conversion type manually, I recreated it, but still > the same error. This is for 2 days now, uploading the conversions once > every hour. > > I did check the offical troubleshooter. The conversion type is enabled. > > Any hint is welcome! > Thanks ahead! > ---*Steve* > > > > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at http://groups.google.com/group/adwords-api. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/4375ca26-187e-46e3-82f4-8e7096cee612%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
