Re: CLICK_MISSING_CONVERSION_LABEL persistent issue

2021-08-04 Thread AdWords API and Google Ads API Forum
Hi, 

I recently heard from a user that this post was causing confusion, so I 
wanted to clarify the behavior. The *specific* conversion tracker of the 
effective conversion tracking account does not have to exist before the 
click. However, the effective conversion tracking account must have at 
least *one* conversion tracker before the click. Adding the *first* 
conversion tracker to an account enables conversion tracking for the 
account, as explained in the Google Ads API conversions guide 

.

Cheers,
Josh, Google Ads API Team

On Friday, November 7, 2014 at 12:43:55 PM UTC-5 Nypo77 wrote:

> Hi Josh!
>
> Thank you for the answer. Seems like I didn't exactly unserstood the 
> official docs so thanks for the explanations.
>
> The conversion upload works now well. As you said, I have problems when I 
> upload conversion BEFORE the (re)creation of the conversion type, but work 
> now fine for conversion AFTER it. Nevertheless, there was a time period 
> (about 1 day) that was needed for the label to become reachable 'alive'.
>
> Thanks again!
> *--Steve*
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b68bdc4e-8a84-4ba1-af3b-994eca7555b0n%40googlegroups.com.


Re: CLICK_MISSING_CONVERSION_LABEL persistent issue

2014-11-07 Thread Nypo77
Hi Josh!

Thank you for the answer. Seems like I didn't exactly unserstood the 
official docs so thanks for the explanations.

The conversion upload works now well. As you said, I have problems when I 
upload conversion BEFORE the (re)creation of the conversion type, but work 
now fine for conversion AFTER it. Nevertheless, there was a time period 
(about 1 day) that was needed for the label to become reachable 'alive'.

Thanks again!
*--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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
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/b69e267c-ede6-46ad-9cdb-a0c4ac451177%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CLICK_MISSING_CONVERSION_LABEL persistent issue

2014-11-06 Thread Josh Radcliff (AdWords API Team)
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
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.