Hi Mubbashar, In the event of DatabaseError.CONCURRENT_MODIFICATION <https://developers.google.com/adwords/api/docs/common-errors#DatabaseError.CONCURRENT_MODIFICATION>, you will not be able to get the values of the specific operation that failed in the response. But please note that you will still have the request that was formed and was sent to the API. The best way to go about this would be have appropriate logger statements in your code which will help you trace each operation. Alternatively, you will also be able to get the criterion Id that was updated during a given time frame using the CustomerSyncService <https://developers.google.com/adwords/api/docs/reference/v201702/CustomerSyncService> if the only update that you performed was the bid update. Here is a sample <https://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201702/accountmanagement/GetAccountChanges.java> in Java for CustomerSyncService. Samples in other languages can be found here <https://developers.google.com/adwords/api/docs/clientlibraries>.
You are likely to get CONCURRENT_MODIFICATION error if you are using multithreading, updating same keywords from multiple calls etc. My suggestion is to catch this error and retry the request with a delay of few seconds. Let me know if you have any additional questions. Thanks, Sreelakshmi, 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 [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 https://groups.google.com/group/adwords-api. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/ea95e517-34ed-4253-bfd9-a1c920b59d4b%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
