Re: how to add a transaction ID to minimize duplicate conversions

2020-09-18 Thread revanth kolluru
Reply privately to author is not working

On Tuesday, August 11, 2020 at 12:36:24 AM UTC+5:30 adsapiforumadvisor 
wrote:

> Hi Revanth,
>
> Thank you for reaching out! In order for me to further investigate this 
> issue, can you please provide your customerClientId as well as the complete 
> detailed logs of the request and response? You can enable logging by 
> following this 
> 
>  guide. 
> Please ensure that you provide these details via the *Reply privately to 
> author *option in order to protect any sensitive data. If this option is 
> not available to you, you can send this information to us directly at 
> googleadsa...@google.com.
>
> Regards,
> Danica, Google Ads API Team
>
> ref:_00D1U1174p._5004Q23IeHE:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/2fc448ff-5de0-4954-ab5c-5732dbaddb61n%40googlegroups.com.


how to add a transaction ID to minimize duplicate conversions

2020-08-07 Thread revanth kolluru
Hi team,

I'm using java sdk(com.google.api-ads)  for uploading offline conversions, 
but the problem is I'm getting a repeat rate of conversions as ~1.5 which 
is not possible(it is happening because the conversion value get updated 
frequently for the same transaction and it google ads is counting it as new 
transaction), so is there a way i can correlate a transaction id with each 
conversion ?

below is the sample code i'm using 


  OfflineConversionFeed feed = new OfflineConversionFeed();
feed.setConversionName(conversionName);
feed.setConversionTime(conversionTime);
feed.setConversionValue(conversionValue);
feed.setGoogleClickId(gClid);

OfflineConversionFeedOperation offlineConversionOperation =
new OfflineConversionFeedOperation();
offlineConversionOperation.setOperator(Operator.ADD);
offlineConversionOperation.setOperand(feed);

OfflineConversionFeedReturnValue offlineConversionReturnValue = null;
try {
offlineConversionReturnValue = offlineConversionFeedService
.mutate(new OfflineConversionFeedOperation[] {offlineConversionOperation});
} catch (RemoteException e) {
log.error("RemoteException while sending update to google, message : 
{}",e.getMessage());
log.error(ExceptionUtils.getStackTrace(e));
return false;
}catch (Exception e) {
log.error("Exception while sending update to google, message : 
{}",e.getMessage());
log.error(ExceptionUtils.getStackTrace(e));
return false;
}

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/6dd01542-9fc0-496f-a206-a4aa33e53a97n%40googlegroups.com.