How do I set autoTaggingEnabled to true for a certain customer Id?
I've tried the following but I receive and error.
Dim CustomerService As CustomerService = CType(User.GetService(AdWordsService.v201702.CustomerService), CustomerService)
Dim Customer As Customer = New Customer()
Customer = CustomerService.getCustomers(ClientCustomerId) <-- This produces the error "Arithmetic operation resulted in an overflow."
Customer.autoTaggingEnabled = True
Dim response As Customer = CustomerService.mutate(Customer)
It would be helpful if you can provide me with a code example.
Thank you
KDJ