I am able to successfully import a call conversion against the defined conversion action. But when the call is not billable or a refund is issued, I would like to retract the call conversion. The existing 'Conversion Adjustment' supports only Gclid Pair. Can someone please explain or point to the code for call conversion retraction? Thanks in advance.
//Conversion Action ConversionAction conversionAction = ConversionAction.newBuilder() .setName(CONVERSION_ACTION_NAME) .setCategory(ConversionActionCategoryEnum.ConversionActionCategory.LEAD) .setType(ConversionActionTypeEnum.ConversionActionType.UPLOAD_CALLS) .setStatus(ConversionActionStatusEnum.ConversionActionStatus.ENABLED) .setIncludeInConversionsMetric(true) .setCountingType( ConversionActionCountingTypeEnum.ConversionActionCountingType.ONE_PER_CLICK) .setValueSettings( ConversionAction.ValueSettings.newBuilder() .setDefaultValue(0) .setAlwaysUseDefaultValue(true) .build()) .setAttributionModelSettings( ConversionAction.AttributionModelSettings.newBuilder() .setAttributionModel( AttributionModelEnum.AttributionModel.GOOGLE_ADS_LAST_CLICK) .build()) .build(); //Upload Call Conversion CallConversion conversion = CallConversion.newBuilder() .setConversionAction(conversionActionResourceName) .setCallerId(call.getCaller_phone_number()) .setCallStartDateTime(callStartTime) .setConversionDateTime(callStartTime) .setConversionValue(callPrice) .setCurrencyCode("USD") .build(); -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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/9ff584a6-3b04-4df9-a0db-c2891ceff846n%40googlegroups.com.