Google 目录 API - 搜索用户 - 排除子单位

Google Directory API - Search Users - Exclude child OrgUnit

这是我的代码。

var oupath = '/';
listObject = {
    customer: 'my_customer',
    query: "isSuspended=false",
    query: "orgUnitPath=" + oupath,
    maxResults: 100
  }

如 G Suite Admin SDK 资源网站所述,'orgUnitPath=/' returns 组织中的所有用户

我需要我的查询只在根 OU 中搜索用户,不包括所有子 OU 的成员。这可能吗?

使用查询词“orgUnitPath”时,无法通过 Users.list 方法过滤或排除子组织。正如您正确提到的那样,它 returns 来自根 OU 和所有子 OU 的所有用户。您必须过滤结果以仅从与您的过滤器匹配的 OU 中获取用户。