Or none of the above.
2) Suppose I want to submit a GET request to return data about various levels of accounts for a admin user.
So I am looking to return multiple accounts, multiple containers etc. Would I use the .list() method?
How would I structure this for an account? Would it be:
function listAccountInformation(accountPath) {
const account = TagManager.Accounts.list(
{},
accountPath);
return account;
};
Or I could print account or console.log it. I've tried several versions but they're throwing errors.
Thanks!