azure 使用Microsoft图形API获取defaultUserRoleList

ql3eal8s  于 12个月前  发布在  其他
关注(0)|答案(1)|浏览(95)

我想通过Microsoft graph API获取defaultUserRoleServer资源类型的详细信息。我希望数据如下图所示:


的数据

bybem2ql

bybem2ql1#

要使用Microsoft Graph API获取默认用户角色权限,可以运行下面的图查询:

GET https://graph.microsoft.com/beta/policies/authorizationPolicy?$select=defaultUserRolePermissions

字符串
我为目录中的用户配置了以下设置


的数据
当我在**Policy.Read.All权限下的Graph Explorer中运行下面的查询时,成功得到了必填信息**,响应如下:

GET https://graph.microsoft.com/beta/policies/authorizationPolicy?$select=defaultUserRolePermissions

回复:


{
    "@odata.context": "https://graph.microsoft.com/beta/$metadata#policies/authorizationPolicy(defaultUserRolePermissions)",
    "value": [
        {
            "defaultUserRolePermissions": {
                "allowedToCreateApps": true,
                "allowedToCreateSecurityGroups": true,
                "allowedToCreateTenants": true,
                "allowedToReadBitlockerKeysForOwnedDevice": true,
                "allowedToReadOtherUsers": true
            }
        }
    ]
}

参考:Get authorizationPolicy - Microsoft Graph

相关问题