Code: public async Task<BatchJobOperationResults> CreateAndRunBatchJob(string customerId, List<MutateOperation> mutateOperations) { var batchJobService = GoogleAdsClient.GetService(Services.V10.BatchJobService);
var operation = new BatchJobOperation { Create = new BatchJob() }; var batchJobResponse = await batchJobService.MutateBatchJobAsync(customerId, operation); var resourceName = batchJobResponse.Result.ResourceName; await batchJobService.AddBatchJobOperationsAsync( new AddBatchJobOperationsRequest { ResourceName = resourceName, MutateOperations = {mutateOperations} }); await batchJobService.RunBatchJobAsync(resourceName); On Friday, April 8, 2022 at 8:46:09 AM UTC+3 Ainis Vabolis wrote: > Hi, > I have created one batchJob with operation to change TrackingUrl, it is a > simple update, previously everything was working fine. BatchJob finished in > couple of minutes. But now I created the job yesterday and today google ads > api says that job is still running. It looks like it is getting stuck, I > tried to create couple of new batch jobs but they are behaving exactly the > same. I create the batchJob according provided documentation. > Could you look into this issue ? > > Best regards > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 "Google Ads API and AdWords 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/2b2064cd-11e8-451e-b9ee-f8927e1cf21fn%40googlegroups.com.