需要一些GAS帮助..
我正在尝试使用ADMIN SDK返回用户及其部门的列表 在Admin SDK中使用Google Apps脚本和目录API。
if (users) {
for (var i = 0; i < users.length; i++) {
var user = users[i];
values.push([users[i].primaryEmail, users[i].orgUnitPath, users[i].organizations.department]);
}
我无法弄清楚在organizational.department中返回部门的语法
如果我使用 用户[I] .organizations 然后它返回该用户的组织中的每个可用条目。
实施例
[{title=Student, location=3, customType=work, department=School, primary=true, name=School District}]
我需要返回'部门'
提前谢谢!