-
Notifications
You must be signed in to change notification settings - Fork 13
/
get-Domains.pq
49 lines (49 loc) · 1.61 KB
/
get-Domains.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
let
output =
(generatedToken as text) =>
let
apiCall =
Json.Document(
Web.Contents(
"https://api.powerbi.com/v1.0/myorg",
[
RelativePath = "admin/domains",
Headers = [
#"Content-Type" = "application/json",
Authorization = generatedToken
]
]
)
)
in
#table(
type table [
objectId = text,
displayName = text,
description = text
],
List.Transform(
apiCall[domains],
each
{
_[objectId]?,
_[displayName]?,
_[description]?
}
)
),
documentation = [
Documentation.Name = " get-Domains.pq ",
Documentation.Description = " Get all domains to tentant ",
Documentation.Source = " https://www.datameerkat.com ",
Documentation.Version = " 1.0 ",
Documentation.Author = " Štěpán Rešl "
]
in
Value.ReplaceType(
output,
Value.ReplaceMetadata(
Value.Type(output),
documentation
)
)