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/713a0a30-4d45-48d1-9216-175ec8b3b147%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.