需要一些 GAS 帮助..
我正在尝试使用 ADMIN SDK 使用 Google Apps 脚本和 Admin SDK 中的 Directory 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]);
}
我无法弄清楚在 organizations.department 中返回部门的语法
如果我使用 users[i].organizations 那么它将返回组织中该用户的每个可用条目。
前任。
[{title=Student, location=3, customType=work, department=School, primary=true, name=School District}]
我只需要返回“部门”
先感谢您!