-
Notifications
You must be signed in to change notification settings - Fork 13
/
get-AppUsersAsAdmin.pq
55 lines (55 loc) · 1.93 KB
/
get-AppUsersAsAdmin.pq
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
let
output =
(generatedToken as text, AppId as text) =>
let
apiCall =
Json.Document(
Web.Contents(
"https://api.powerbi.com/v1.0/myorg",
[
RelativePath = "admin/apps/" & AppId & "/users",
Headers = [
#"Content-Type" = "application/json",
Authorization = generatedToken
]
]
)
)
in
#table(
type table [
AppUserAccessRight = text,
displayName = text,
emailAddress = text,
graphId = text,
identifier = text,
principalType = text
],
List.Transform(
apiCall[value],
each
{
_[AppUserAccessRight]?,
_[displayName]?,
_[emailAddress]?,
_[graphId]?,
_[identifier]?,
_[principalType]?
}
)
),
documentation = [
Documentation.Name = " get-AppUserAsAdmin.pq ",
Documentation.Description = " Get All Users of the App ",
Documentation.Source = "https://www.jaknapowerbi.cz",
Documentation.Version = " 1.0 ",
Documentation.Author = " Štěpán Rešl "
]
in
Value.ReplaceType(
output,
Value.ReplaceMetadata(
Value.Type(output),
documentation
)
)