Just so you known that I uthink I understand the behavior of this switch:

OfflineConversionFeedReturnValue returnValue;

// Upload all the created conversions in a batch
// By specifying 'partial failure = true' in the header, this allows 
individual failures not to prevent partial success, and will return 
'partialFailureErrors' which then can be evaluated
offlineConversionFeedService.RequestHeader.partialFailure = true;
try
{
    returnValue = offlineConversionFeedService.mutate(operations.ToArray());
}
catch (AdWordsApiException)
{
    //Handle specific errors, code omitted for brevity
}
catch (Exception)
{
//Handle generic specific, code omitted for brevity
}

if (returnValue.partialFailureErrors != null
    && returnValue.partialFailureErrors.Any())
{
    foreach (var apiError in returnValue.partialFailureErrors)
    {
        var index = apiError.GetOperationIndex();
                var conversion = conversions[index];
        // Individual failures are handled here


On Wednesday, August 16, 2017 at 4:50:02 PM UTC+2, Shwetha Vastrad (AdWords 
API Team) wrote:
>
> Hi Robert, 
>
> When the partialFailure 
> <https://developers.google.com/adwords/api/docs/guides/partial-failure> 
> header 
> is set to true, the service will return results for successful operations 
> and errors for failed ones. Could you enable logging and provide the SOAP 
> request and response logs for the request to OfflineConversionFeedService 
> where results for valid operations were not returned? Please use *Reply 
> privately to author* when responding. 
>
> Thanks,
> Shwetha, AdWords API Team.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/46207ece-9a63-4d63-8c91-203cdbde4286%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • partialFailure ... Robert Sirre
    • Re: partia... 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
      • Re: pa... Robert Sirre
      • Re: pa... Robert Sirre
        • Re... 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
          • ... 'Marina O' via AdWords API Forum
            • ... 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum

Reply via email to