Hi AdsScripts team,
I'd like to try working in parallel on my accounts.
Before my script was making changes in series.
I had a code like that:
var accountSelector = AdsManagerApp.accounts()
.withCondition("LabelNames CONTAINS '" + LABELNAME + "'");
var accountIterator = accountSelector.get();
while (accountIterator.hasNext()) {
var account = accountIterator.next();
How can I access the same account object for each account while working in parallel, please?
Currently, I select the account like that:
var account = AdsApp.currentAccount();
Unfortunately, it doesn't have the same methods.
Can you help me with it, please?
Thank you,
Krzysztof