codeapp-js 0.2.2 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. package/AI/codeapp.agent.md +105 -0
  2. package/AI/skills/connections/SKILL.md +47 -0
  3. package/AI/skills/dataverse/SKILL.md +99 -0
  4. package/AI/skills/environment-variables/SKILL.md +89 -0
  5. package/AI/skills/frontend-design/SKILL.md +34 -0
  6. package/AI/skills/jira/SKILL.md +81 -0
  7. package/AI/skills/office365-groups/SKILL.md +61 -0
  8. package/AI/skills/office365-outlook/SKILL.md +52 -0
  9. package/AI/skills/office365-users/SKILL.md +78 -0
  10. package/AI/skills/sharepoint/SKILL.md +77 -0
  11. package/AI/skills/sql/SKILL.md +85 -0
  12. package/AI/skills/start/SKILL.md +46 -0
  13. package/AI/skills/teams/SKILL.md +55 -0
  14. package/codeApp/.power/schemas/appschemas/dataSourcesInfo.ts +6275 -0
  15. package/codeApp/.power/schemas/jira/jira.Schema.json +6903 -0
  16. package/codeApp/.power/schemas/keyvault/keyvault.Schema.json +1600 -0
  17. package/{examples/combined demo/.power/schemas/office365groups/office365groups.Schema.json → codeApp/.power/schemas/office365groups/office365groups.Schema.json} +2203 -2203
  18. package/codeApp/.power/schemas/teams/teams.Schema.json +11112 -0
  19. package/codeApp/dist/codeapp.js +103 -1043
  20. package/codeApp/dist/connectors/azureKeyvault.js +459 -0
  21. package/codeApp/dist/connectors/jira.js +1247 -0
  22. package/codeApp/dist/connectors/office365groups.js +642 -0
  23. package/codeApp/dist/connectors/office365users.js +513 -0
  24. package/codeApp/dist/connectors/outlook.js +1393 -0
  25. package/{examples/kanban/dist → codeApp/dist/connectors}/sharepoint.js +466 -339
  26. package/codeApp/dist/connectors/sql.js +149 -0
  27. package/codeApp/dist/connectors/teams.js +280 -0
  28. package/codeApp/dist/index.js +1 -1
  29. package/codeApp/dist/power-apps-data.js +725 -176
  30. package/codeApp/src/generated/index.ts +12 -0
  31. package/codeApp/src/generated/models/AzureKeyVaultModel.ts +107 -0
  32. package/codeApp/src/generated/models/JiraModel.ts +501 -0
  33. package/codeApp/src/generated/services/AzureKeyVaultService.ts +257 -0
  34. package/codeApp/src/generated/services/JiraService.ts +1124 -0
  35. package/examples/{kanban → apps/kanban}/dist/dataverse.js +94 -94
  36. package/examples/{kanban → apps/kanban}/dist/index.css +605 -605
  37. package/examples/{kanban → apps/kanban}/dist/index.html +21 -21
  38. package/examples/{kanban → apps/kanban}/dist/index.js +860 -860
  39. package/examples/{kanban → apps/kanban}/dist/office365groups.js +97 -97
  40. package/examples/apps/kanban/dist/office365users.js +451 -0
  41. package/examples/{kanban → apps/kanban}/dist/outlook.js +162 -162
  42. package/examples/{planning Poker/dist/power-apps-data.js → apps/kanban/dist/power-apps-data.js} +2953 -2953
  43. package/{dev files/sharepoint.js → examples/apps/kanban/dist/sharepoint.js} +195 -99
  44. package/examples/{kanban → apps/kanban}/power.config.json +35 -35
  45. package/examples/{planning Poker → apps/planning Poker}/additional files/customizations (tables).xml +6428 -6428
  46. package/examples/{planning Poker → apps/planning Poker}/additional files/dataverse-tables.json +165 -165
  47. package/examples/{planning Poker → apps/planning Poker}/additional files/readme.md +122 -122
  48. package/examples/{planning Poker → apps/planning Poker}/dist/dataverse.js +78 -78
  49. package/examples/{planning Poker → apps/planning Poker}/dist/index.html +198 -198
  50. package/examples/{planning Poker → apps/planning Poker}/dist/index.js +954 -954
  51. package/examples/{kanban/dist/power-apps-data.js → apps/planning Poker/dist/power-apps-data.js } +2953 -2953
  52. package/examples/{planning Poker → apps/planning Poker}/dist/styles.css +815 -815
  53. package/examples/{planning Poker → apps/planning Poker}/power.config.json +50 -50
  54. package/examples/{solution explorer → apps/solution explorer}/dist/codeapp.js +1098 -1098
  55. package/examples/{solution explorer → apps/solution explorer}/dist/index.html +80 -80
  56. package/examples/{solution explorer → apps/solution explorer}/dist/index.js +735 -735
  57. package/examples/{solution explorer → apps/solution explorer}/dist/styles.css +571 -571
  58. package/examples/{solution explorer → apps/solution explorer}/power.config.json +150 -150
  59. package/examples/{todo → apps/todo}/dist/dataverse.js +64 -64
  60. package/examples/{todo → apps/todo}/dist/index.html +75 -75
  61. package/examples/{todo → apps/todo}/dist/index.js +8 -8
  62. package/examples/{todo → apps/todo}/dist/power-apps-data.js +2953 -2953
  63. package/examples/{todo → apps/todo}/dist/renderer.js +375 -375
  64. package/examples/{todo → apps/todo}/dist/styles.css +691 -691
  65. package/examples/{todo → apps/todo}/power.config.json +34 -34
  66. package/examples/combined demo/.power/schemas/appschemas/dataSourcesInfo.ts +6275 -7830
  67. package/examples/combined demo/.power/schemas/jira/jira.Schema.json +6903 -0
  68. package/examples/combined demo/.power/schemas/keyvault/keyvault.Schema.json +1600 -0
  69. package/examples/combined demo/.power/schemas/teams/teams.Schema.json +11112 -0
  70. package/examples/combined demo/dist/codeapp.js +394 -1098
  71. package/examples/combined demo/dist/index.html +29 -511
  72. package/examples/combined demo/dist/index.js +490 -470
  73. package/examples/combined demo/dist/office365users.js +513 -0
  74. package/examples/combined demo/dist/outlook.js +1393 -0
  75. package/examples/combined demo/dist/power-apps-data.js +3079 -3006
  76. package/examples/combined demo/dist/styles.css +483 -0
  77. package/examples/combined demo/power.config.json +33 -42
  78. package/examples/combined demo/src/generated/index.ts +12 -14
  79. package/examples/combined demo/src/generated/models/AzureKeyVaultModel.ts +107 -0
  80. package/examples/combined demo/src/generated/models/JiraModel.ts +501 -0
  81. package/examples/combined demo/src/generated/services/AzureKeyVaultService.ts +257 -0
  82. package/examples/combined demo/src/generated/services/JiraService.ts +1124 -0
  83. package/examples/dataverse Demo/dist/codeapp.js +394 -1085
  84. package/examples/{outlook Demo2/OutlookDemo_1_0_0_1.zip → dataverse Demo/dist/icon-512.png} +0 -0
  85. package/examples/dataverse Demo/dist/index.html +146 -54
  86. package/examples/dataverse Demo/dist/index.js +693 -83
  87. package/examples/dataverse Demo/dist/power-apps-data.js +3079 -2911
  88. package/examples/dataverse Demo/dist/styles.css +528 -0
  89. package/examples/dataverse Demo/power.config.json +41 -35
  90. package/examples/dataverse Demo/readme.md +79 -79
  91. package/examples/groups Demo/dist/codeapp.js +394 -1085
  92. package/examples/groups Demo/dist/icon-512.png +0 -0
  93. package/examples/groups Demo/dist/index.html +21 -25
  94. package/examples/groups Demo/dist/index.js +304 -113
  95. package/examples/groups Demo/dist/office365groups.js +642 -0
  96. package/examples/groups Demo/dist/power-apps-data.js +3079 -2911
  97. package/examples/groups Demo/dist/styles.css +509 -0
  98. package/examples/groups Demo/power.config.json +25 -25
  99. package/examples/myProfile/dist/codeapp.js +398 -0
  100. package/examples/myProfile/dist/index.html +21 -184
  101. package/examples/myProfile/dist/index.js +324 -141
  102. package/examples/myProfile/dist/office365users.js +517 -169
  103. package/examples/myProfile/dist/power-apps-data.js +3080 -2953
  104. package/examples/myProfile/dist/styles.css +458 -0
  105. package/examples/myProfile/power.config.json +24 -23
  106. package/examples/outlook Demo/dist/codeapp.js +394 -1085
  107. package/examples/outlook Demo/dist/index.html +150 -35
  108. package/examples/outlook Demo/dist/index.js +516 -170
  109. package/examples/outlook Demo/dist/outlook.js +1393 -121
  110. package/examples/outlook Demo/dist/power-apps-data.js +3079 -2911
  111. package/examples/outlook Demo/dist/styles.css +408 -84
  112. package/examples/outlook Demo/power.config.json +24 -23
  113. package/examples/outlook Demo/readme.md +92 -82
  114. package/examples/sharePoint Demo/dist/codeapp.js +394 -1085
  115. package/examples/sharePoint Demo/dist/icon-512.png +0 -0
  116. package/examples/sharePoint Demo/dist/index.html +22 -255
  117. package/examples/sharePoint Demo/dist/index.js +899 -262
  118. package/examples/sharePoint Demo/dist/power-apps-data.js +3079 -2911
  119. package/examples/sharePoint Demo/dist/sharepoint.js +466 -0
  120. package/examples/sharePoint Demo/dist/styles.css +587 -0
  121. package/examples/sharePoint Demo/power.config.json +23 -22
  122. package/package.json +1 -1
  123. package/readme.md +479 -61
  124. package/.github/instructions/wyattdave.instructions.md +0 -39
  125. package/.vscode/settings.json +0 -6
  126. package/dev files/dataverse.js +0 -105
  127. package/dev files/office365groups.js +0 -65
  128. package/dev files/office365users.js +0 -169
  129. package/dev files/outlook.js +0 -330
  130. package/examples/combined demo/.power/schemas/office365/office365.Schema.json +0 -21098
  131. package/examples/combined demo/.power/schemas/office365users/office365users.Schema.json +0 -2094
  132. package/examples/kanban/agent/decision-log.md +0 -9
  133. package/examples/kanban/agent/mockup-01-editorial-glass.html +0 -159
  134. package/examples/kanban/agent/mockup-02-dark-rail.html +0 -147
  135. package/examples/kanban/agent/mockup-03-paper-grid.html +0 -114
  136. package/examples/kanban/agent/mockup-04-neon-minimal.html +0 -141
  137. package/examples/kanban/agent/mockup-05-mono-architect.html +0 -119
  138. package/examples/kanban/dist/environmentVar.js +0 -55
  139. package/examples/kanban/dist/office365users.js +0 -169
  140. package/examples/kanban/src/generated/index.ts +0 -14
  141. package/examples/outlook Demo2/agent/decision-log.md +0 -7
  142. package/examples/outlook Demo2/dist/codeapp.js +0 -1334
  143. package/examples/outlook Demo2/dist/index.html +0 -98
  144. package/examples/outlook Demo2/dist/index.js +0 -346
  145. package/examples/outlook Demo2/dist/styles.css +0 -639
  146. package/examples/outlook Demo2/power.config.json +0 -23
  147. package/examples/planning Poker/.vscode/settings.json +0 -5
  148. package/examples/sharePoint Demo/agent/decision-log.md +0 -17
  149. package/examples/solution explorer/agent/decision-log.md +0 -27
  150. package/examples/solution explorer/agent/mockup-01-swiss-grid.html +0 -452
  151. package/examples/solution explorer/agent/mockup-02-dark-glass.html +0 -496
  152. package/examples/solution explorer/agent/mockup-03-paper-console.html +0 -510
  153. package/examples/solution explorer/agent/mockup-04-neon-noir.html +0 -546
  154. package/examples/solution explorer/agent/mockup-05-zen-garden.html +0 -534
  155. package/examples/solution explorer/dist/power-apps-data.js +0 -3007
  156. package/scripts/build-power-sdk.mjs +0 -69
  157. /package/{examples/kanban → codeApp}/src/generated/models/Office365GroupsModel.ts +0 -0
  158. /package/{examples/kanban → codeApp}/src/generated/models/Office365OutlookModel.ts +0 -0
  159. /package/{examples/kanban → codeApp}/src/generated/models/Office365UsersModel.ts +0 -0
  160. /package/{examples/kanban → codeApp}/src/generated/services/Office365GroupsService.ts +0 -0
  161. /package/{examples/kanban → codeApp}/src/generated/services/Office365OutlookService.ts +0 -0
  162. /package/{examples/kanban → codeApp}/src/generated/services/Office365UsersService.ts +0 -0
  163. /package/{dev files → examples/apps/kanban/dist}/environmentVar.js +0 -0
  164. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/index.ts +0 -0
  165. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/models/Office365GroupsModel.ts +0 -0
  166. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/models/Office365OutlookModel.ts +0 -0
  167. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/models/Office365UsersModel.ts +0 -0
  168. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/services/Office365GroupsService.ts +0 -0
  169. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/services/Office365OutlookService.ts +0 -0
  170. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/services/Office365UsersService.ts +0 -0
  171. /package/examples/{planning Poker → apps/planning Poker}/additional files/AgilePoker_1_0_0_1.zip +0 -0
  172. /package/examples/{planning Poker → apps/planning Poker}/additional files/PokerTables_1_0_0_1.zip +0 -0
  173. /package/examples/{outlook Demo2 → apps/solution explorer}/dist/icon-512.png +0 -0
  174. /package/examples/{outlook Demo2 → apps/solution explorer}/dist/power-apps-data.js +0 -0
  175. /package/examples/{todo → apps/todo}/dist/icon192.png +0 -0
  176. /package/examples/{solution explorer → combined demo}/dist/icon-512.png +0 -0
@@ -1,2204 +1,2204 @@
1
- {
2
- "name": "shared_office365groups",
3
- "id": "/providers/Microsoft.PowerApps/apis/shared_office365groups",
4
- "type": "Microsoft.PowerApps/apis",
5
- "properties": {
6
- "displayName": "Office 365 Groups",
7
- "iconUri": "https://conn-afd-prod-endpoint-bmc9bqahasf3grgk.b01.azurefd.net/releases/v1.0.1777/1.0.1777.4410/office365groups/icon.png",
8
- "iconBrandColor": "#EB3C00",
9
- "apiEnvironment": "Shared",
10
- "isCustomApi": false,
11
- "blobUrisAreProxied": false,
12
- "connectionParameters": {
13
- "token": {
14
- "type": "oauthSetting",
15
- "oAuthSettings": {
16
- "identityProvider": "aadcertificate",
17
- "clientId": "7ab7862c-4c57-491e-8a45-d52a7e023983",
18
- "scopes": [
19
- "Group.ReadWrite.All offline_access"
20
- ],
21
- "redirectMode": "GlobalPerConnector",
22
- "redirectUrl": "https://global.consent.azure-apim.net/redirect/office365groups",
23
- "properties": {
24
- "IsFirstParty": "True",
25
- "AzureActiveDirectoryResourceId": "https://graph.microsoft.com/",
26
- "IsOnbehalfofLoginSupported": true
27
- },
28
- "customParameters": {
29
- "ResourceUri": {
30
- "value": "https://graph.microsoft.com/"
31
- },
32
- "LoginUri": {
33
- "value": "https://login.windows.net"
34
- },
35
- "LoginUriAAD": {
36
- "value": "https://login.windows.net"
37
- }
38
- }
39
- }
40
- },
41
- "token:TenantId": {
42
- "type": "string",
43
- "metadata": {
44
- "sourceType": "AzureActiveDirectoryTenant"
45
- },
46
- "uiDefinition": {
47
- "displayName": "Tenant",
48
- "description": "The tenant ID of for the Microsoft Entra ID application",
49
- "constraints": {
50
- "required": "false",
51
- "hidden": "true"
52
- }
53
- }
54
- }
55
- },
56
- "swagger": {
57
- "swagger": "2.0",
58
- "info": {
59
- "version": "1.0.0",
60
- "title": "Office 365 Groups",
61
- "description": "Office 365 Groups lets you manage group membership and calendar events in your organization using your Office 365 account. You can perform various actions such as get group roster, add or remove members and create group events.",
62
- "x-ms-api-annotation": {
63
- "status": "Production"
64
- },
65
- "contact": {
66
- "name": "Office 365 Groups",
67
- "url": "https://learn.microsoft.com/en-us/connectors/office365groups/",
68
- "email": "idcknowledgeeco@microsoft.com"
69
- }
70
- },
71
- "host": "unitedstates-002.azure-apim.net",
72
- "basePath": "/apim/office365groups",
73
- "schemes": [
74
- "https"
75
- ],
76
- "consumes": [],
77
- "produces": [
78
- "application/json"
79
- ],
80
- "paths": {
81
- "/{connectionId}/v1.0/groups/{groupId}/members": {
82
- "get": {
83
- "summary": "List group members",
84
- "description": "This operation returns a list of all members in the given group and their details such as name, title, email, etc. You can query up to 1000 items using Top parameter. In case you need to retrieve more than 1000 values please turn on Settings->Pagination feature and provide Threshold limit.",
85
- "operationId": "ListGroupMembers",
86
- "parameters": [
87
- {
88
- "name": "connectionId",
89
- "in": "path",
90
- "required": true,
91
- "type": "string",
92
- "x-ms-visibility": "internal"
93
- },
94
- {
95
- "$ref": "#/parameters/groupId__in_path"
96
- },
97
- {
98
- "name": "$top",
99
- "in": "query",
100
- "x-ms-summary": "Top",
101
- "description": "Number of group members to retrieve (from 1 to 999, default is 100).",
102
- "required": false,
103
- "x-ms-visibility": "advanced",
104
- "type": "integer",
105
- "format": "int32"
106
- }
107
- ],
108
- "responses": {
109
- "200": {
110
- "description": "Operation Successful",
111
- "schema": {
112
- "$ref": "#/definitions/ListGroupMembers_Response"
113
- }
114
- }
115
- },
116
- "deprecated": false,
117
- "x-ms-visibility": "advanced",
118
- "x-ms-test-value": "ee115782-220d-4acc-92c4-e261619d63cd",
119
- "x-ms-pageable": {
120
- "nextLinkName": "@odata.nextLink"
121
- },
122
- "externalDocs": {
123
- "url": "https://docs.microsoft.com/connectors/office365groups/#list-group-members"
124
- }
125
- }
126
- },
127
- "/{connectionId}/trigger/v1.0/groups/delta": {
128
- "get": {
129
- "summary": "When a group member is added or removed",
130
- "description": "This operation triggers when a member is added to or removed from the given group.",
131
- "operationId": "OnGroupMembershipChange",
132
- "parameters": [
133
- {
134
- "name": "connectionId",
135
- "in": "path",
136
- "required": true,
137
- "type": "string",
138
- "x-ms-visibility": "internal"
139
- },
140
- {
141
- "$ref": "#/parameters/groupId__in_query"
142
- },
143
- {
144
- "name": "$select",
145
- "in": "query",
146
- "x-ms-summary": "Select",
147
- "x-ms-test-value": "members",
148
- "x-ms-visibility": "internal",
149
- "type": "string",
150
- "default": "members"
151
- }
152
- ],
153
- "responses": {
154
- "200": {
155
- "description": "Operation Successful",
156
- "schema": {
157
- "$ref": "#/definitions/OnGroupMemberAddedOrRemoved_Response"
158
- }
159
- }
160
- },
161
- "deprecated": false,
162
- "x-ms-visibility": "advanced",
163
- "x-ms-test-value": "ee115782-220d-4acc-92c4-e261619d63cd",
164
- "x-ms-pageable": {
165
- "nextLinkName": "@odata.nextLink"
166
- },
167
- "x-ms-trigger": "batch",
168
- "x-ms-trigger-hint": "To see it work now, add a member to the group.",
169
- "x-ms-dev-triggerType": "DeltaLink",
170
- "x-ms-dev-triggerValueCollection": "value[0].members@delta",
171
- "x-ms-dev-triggerValuePath": "@odata.deltaLink",
172
- "x-ms-dev-queryfilterParamName": "$deltatoken",
173
- "externalDocs": {
174
- "url": "https://docs.microsoft.com/connectors/office365groups/#when-a-group-member-is-added-or-removed"
175
- }
176
- }
177
- },
178
- "/{connectionId}/v1.0/groups/{groupId}/members/$ref": {
179
- "post": {
180
- "summary": "Add member to group",
181
- "description": "This operation is used to add a member to an O365 group, using a UPN.",
182
- "operationId": "AddMemberToGroup",
183
- "parameters": [
184
- {
185
- "name": "connectionId",
186
- "in": "path",
187
- "required": true,
188
- "type": "string",
189
- "x-ms-visibility": "internal"
190
- },
191
- {
192
- "$ref": "#/parameters/groupId__in_path"
193
- },
194
- {
195
- "name": "userUpn",
196
- "in": "query",
197
- "description": "The user principal name (UPN) of the user.",
198
- "required": true,
199
- "x-ms-summary": "User Principal Name",
200
- "type": "string"
201
- }
202
- ],
203
- "responses": {
204
- "204": {
205
- "description": "Operation Successful"
206
- }
207
- },
208
- "deprecated": false,
209
- "x-ms-no-generic-test": true,
210
- "x-ms-visibility": "important",
211
- "externalDocs": {
212
- "url": "https://docs.microsoft.com/connectors/office365groups/#add-member-to-group"
213
- }
214
- }
215
- },
216
- "/{connectionId}/v1.0/me/memberOf/$/microsoft.graph.group": {
217
- "get": {
218
- "summary": "List my owned groups",
219
- "description": "This operation returns a list of all groups that you own.",
220
- "operationId": "ListOwnedGroups",
221
- "parameters": [
222
- {
223
- "name": "connectionId",
224
- "in": "path",
225
- "required": true,
226
- "type": "string",
227
- "x-ms-visibility": "internal"
228
- }
229
- ],
230
- "responses": {
231
- "200": {
232
- "description": "Operation Successful",
233
- "schema": {
234
- "$ref": "#/definitions/ListOwnedGroups_Response"
235
- }
236
- }
237
- },
238
- "deprecated": false,
239
- "x-ms-visibility": "advanced",
240
- "externalDocs": {
241
- "url": "https://docs.microsoft.com/connectors/office365groups/#list-my-owned-groups"
242
- }
243
- }
244
- },
245
- "/{connectionId}/v1.0/me/ownedObjects/$/microsoft.graph.group": {
246
- "get": {
247
- "summary": "List my owned groups (V2)",
248
- "description": "This operation returns a list of all groups that you own.",
249
- "operationId": "ListOwnedGroups_V2",
250
- "parameters": [
251
- {
252
- "name": "connectionId",
253
- "in": "path",
254
- "required": true,
255
- "type": "string",
256
- "x-ms-visibility": "internal"
257
- },
258
- {
259
- "$ref": "#/parameters/extractSensitivityLabel"
260
- },
261
- {
262
- "$ref": "#/parameters/fetchSensitivityLabelMetadata"
263
- }
264
- ],
265
- "responses": {
266
- "200": {
267
- "description": "Operation Successful",
268
- "schema": {
269
- "$ref": "#/definitions/ListOwnedGroups_V2_Response"
270
- }
271
- }
272
- },
273
- "deprecated": false,
274
- "x-ms-visibility": "advanced",
275
- "externalDocs": {
276
- "url": "https://docs.microsoft.com/connectors/office365groups/#list-my-owned-groups-(v2)"
277
- }
278
- }
279
- },
280
- "/{connectionId}/v2/v1.0/me/memberOf/$/microsoft.graph.group": {
281
- "get": {
282
- "summary": "List groups that I own and belong to",
283
- "description": "This operation returns a list of all groups that you own and belong to.",
284
- "operationId": "ListOwnedGroups_V3",
285
- "parameters": [
286
- {
287
- "name": "connectionId",
288
- "in": "path",
289
- "required": true,
290
- "type": "string",
291
- "x-ms-visibility": "internal"
292
- },
293
- {
294
- "$ref": "#/parameters/extractSensitivityLabel"
295
- },
296
- {
297
- "$ref": "#/parameters/fetchSensitivityLabelMetadata"
298
- }
299
- ],
300
- "responses": {
301
- "200": {
302
- "description": "Operation Successful",
303
- "schema": {
304
- "$ref": "#/definitions/ListOwnedGroups_Response"
305
- }
306
- }
307
- },
308
- "deprecated": false,
309
- "x-ms-visibility": "advanced",
310
- "externalDocs": {
311
- "url": "https://docs.microsoft.com/connectors/office365groups/#list-groups-that-i-own-and-belong-to"
312
- }
313
- }
314
- },
315
- "/{connectionId}/v1.0/groups": {
316
- "get": {
317
- "summary": "List groups",
318
- "description": "This operation returns a list of all groups in the organization.",
319
- "operationId": "ListGroups",
320
- "parameters": [
321
- {
322
- "name": "connectionId",
323
- "in": "path",
324
- "required": true,
325
- "type": "string",
326
- "x-ms-visibility": "internal"
327
- },
328
- {
329
- "$ref": "#/parameters/extractSensitivityLabel"
330
- },
331
- {
332
- "$ref": "#/parameters/fetchSensitivityLabelMetadata"
333
- },
334
- {
335
- "name": "$filter",
336
- "in": "query",
337
- "description": "Enter an OData style filter expression to limit which rows are listed.",
338
- "required": false,
339
- "x-ms-summary": "Filter rows",
340
- "x-ms-visibility": "advanced",
341
- "type": "string"
342
- },
343
- {
344
- "name": "$top",
345
- "in": "query",
346
- "description": "Sets the page size of results.",
347
- "required": false,
348
- "x-ms-summary": "Page size",
349
- "x-ms-visibility": "advanced",
350
- "type": "integer"
351
- },
352
- {
353
- "name": "$skiptoken",
354
- "in": "query",
355
- "required": false,
356
- "type": "string",
357
- "x-ms-summary": "Skip token",
358
- "x-ms-visibility": "advanced",
359
- "description": "Token that references the next page of results and is returned in the @odata.nextLink property in the response."
360
- }
361
- ],
362
- "responses": {
363
- "200": {
364
- "description": "Operation Successful",
365
- "schema": {
366
- "$ref": "#/definitions/ListGroups_Response"
367
- }
368
- }
369
- },
370
- "deprecated": false,
371
- "x-ms-visibility": "advanced",
372
- "x-ms-pageable": {
373
- "nextLinkName": "@odata.nextLink"
374
- },
375
- "externalDocs": {
376
- "url": "https://docs.microsoft.com/connectors/office365groups/#list-groups"
377
- }
378
- }
379
- },
380
- "/{connectionId}/v1.0/groups/{groupId}/events": {
381
- "post": {
382
- "summary": "Create a group event",
383
- "description": "This operation is used to create a new event in a group calendar.",
384
- "operationId": "CreateCalendarEvent",
385
- "parameters": [
386
- {
387
- "name": "connectionId",
388
- "in": "path",
389
- "required": true,
390
- "type": "string",
391
- "x-ms-visibility": "internal"
392
- },
393
- {
394
- "$ref": "#/parameters/groupId__in_path"
395
- },
396
- {
397
- "name": "body",
398
- "in": "body",
399
- "required": true,
400
- "schema": {
401
- "$ref": "#/definitions/UpdateCalendarEvent_Request"
402
- }
403
- }
404
- ],
405
- "responses": {
406
- "201": {
407
- "description": "Operation Successful",
408
- "schema": {
409
- "$ref": "#/definitions/CreateCalendarEvent_Response"
410
- }
411
- }
412
- },
413
- "deprecated": true,
414
- "x-ms-no-generic-test": true,
415
- "x-ms-api-annotation": {
416
- "status": "Production",
417
- "family": "CreateCalendarEvent",
418
- "revision": 1
419
- },
420
- "externalDocs": {
421
- "url": "https://docs.microsoft.com/connectors/office365groups/#create-a-group-event-%5bdeprecated%5d"
422
- }
423
- }
424
- },
425
- "/{connectionId}/v2/v1.0/groups/{groupId}/events": {
426
- "post": {
427
- "summary": "Create a group event (V2)",
428
- "description": "This operation is used to create a new event in a group calendar.",
429
- "operationId": "CreateCalendarEventV2",
430
- "parameters": [
431
- {
432
- "name": "connectionId",
433
- "in": "path",
434
- "required": true,
435
- "type": "string",
436
- "x-ms-visibility": "internal"
437
- },
438
- {
439
- "$ref": "#/parameters/groupId__in_path"
440
- },
441
- {
442
- "name": "body",
443
- "in": "body",
444
- "required": true,
445
- "schema": {
446
- "$ref": "#/definitions/UpdateCalendarEvent_HTMLRequest"
447
- }
448
- }
449
- ],
450
- "responses": {
451
- "201": {
452
- "description": "Operation Successful",
453
- "schema": {
454
- "$ref": "#/definitions/CreateCalendarEvent_Response"
455
- }
456
- }
457
- },
458
- "deprecated": false,
459
- "x-ms-no-generic-test": true,
460
- "x-ms-api-annotation": {
461
- "status": "Production",
462
- "family": "CreateCalendarEvent",
463
- "revision": 2
464
- },
465
- "externalDocs": {
466
- "url": "https://docs.microsoft.com/connectors/office365groups/#create-a-group-event-(v2)"
467
- }
468
- }
469
- },
470
- "/{connectionId}/v1.0/groups/{groupId}/events/{event}": {
471
- "delete": {
472
- "summary": "Delete event (V2)",
473
- "description": "This operation deletes an event in a calendar.",
474
- "operationId": "CalendarDeleteItem_V2",
475
- "parameters": [
476
- {
477
- "name": "connectionId",
478
- "in": "path",
479
- "required": true,
480
- "type": "string",
481
- "x-ms-visibility": "internal"
482
- },
483
- {
484
- "$ref": "#/parameters/groupId__in_path"
485
- },
486
- {
487
- "name": "event",
488
- "in": "path",
489
- "description": "Select an event",
490
- "required": true,
491
- "x-ms-summary": "Id",
492
- "x-ms-url-encoding": "double",
493
- "type": "string"
494
- }
495
- ],
496
- "responses": {
497
- "204": {
498
- "description": "OK"
499
- },
500
- "default": {
501
- "description": "Operation Failed."
502
- }
503
- },
504
- "deprecated": false,
505
- "x-ms-no-generic-test": true,
506
- "x-ms-visibility": "important",
507
- "externalDocs": {
508
- "url": "https://docs.microsoft.com/connectors/office365groups/#delete-event-(v2)"
509
- }
510
- },
511
- "patch": {
512
- "summary": "Update a group event",
513
- "description": "This operation is used to update a new event in a group calendar.",
514
- "operationId": "UpdateCalendarEvent",
515
- "parameters": [
516
- {
517
- "name": "connectionId",
518
- "in": "path",
519
- "required": true,
520
- "type": "string",
521
- "x-ms-visibility": "internal"
522
- },
523
- {
524
- "$ref": "#/parameters/groupId__in_path"
525
- },
526
- {
527
- "name": "event",
528
- "in": "path",
529
- "description": "Select an event",
530
- "required": true,
531
- "x-ms-summary": "Id",
532
- "x-ms-url-encoding": "double",
533
- "type": "string"
534
- },
535
- {
536
- "name": "body",
537
- "in": "body",
538
- "required": true,
539
- "schema": {
540
- "$ref": "#/definitions/UpdateCalendarEvent_HTMLRequest"
541
- }
542
- }
543
- ],
544
- "responses": {
545
- "200": {
546
- "description": "Operation Successful",
547
- "schema": {
548
- "$ref": "#/definitions/CreateCalendarEvent_Response"
549
- }
550
- }
551
- },
552
- "deprecated": false,
553
- "x-ms-no-generic-test": true,
554
- "x-ms-visibility": "important",
555
- "externalDocs": {
556
- "url": "https://docs.microsoft.com/connectors/office365groups/#update-a-group-event"
557
- }
558
- }
559
- },
560
- "/{connectionId}/v1.0/groups/{groupId}/members/memberId/$ref": {
561
- "delete": {
562
- "summary": "Remove member from group",
563
- "description": "This operation is used to remove a member from an O365 group, using a UPN.",
564
- "operationId": "RemoveMemberFromGroup",
565
- "parameters": [
566
- {
567
- "name": "connectionId",
568
- "in": "path",
569
- "required": true,
570
- "type": "string",
571
- "x-ms-visibility": "internal"
572
- },
573
- {
574
- "$ref": "#/parameters/groupId__in_path"
575
- },
576
- {
577
- "name": "userUpn",
578
- "in": "query",
579
- "description": "The user principal name (UPN) of the user",
580
- "required": true,
581
- "x-ms-summary": "User Principal Name",
582
- "type": "string"
583
- }
584
- ],
585
- "responses": {
586
- "204": {
587
- "description": "Operation Successful"
588
- }
589
- },
590
- "deprecated": false,
591
- "x-ms-no-generic-test": true,
592
- "x-ms-visibility": "important",
593
- "externalDocs": {
594
- "url": "https://docs.microsoft.com/connectors/office365groups/#remove-member-from-group"
595
- }
596
- }
597
- },
598
- "/{connectionId}/trigger/v1.0/groups/{groupId}/events": {
599
- "get": {
600
- "summary": "When there is a new event",
601
- "description": "This operation triggers when a new event is added to a group calendar.",
602
- "operationId": "OnNewEvent",
603
- "parameters": [
604
- {
605
- "name": "connectionId",
606
- "in": "path",
607
- "required": true,
608
- "type": "string",
609
- "x-ms-visibility": "internal"
610
- },
611
- {
612
- "$ref": "#/parameters/groupId__in_path"
613
- }
614
- ],
615
- "responses": {
616
- "200": {
617
- "description": "Operation Successful",
618
- "schema": {
619
- "$ref": "#/definitions/OnNewEvent_Response"
620
- }
621
- }
622
- },
623
- "deprecated": false,
624
- "x-ms-visibility": "important",
625
- "x-ms-trigger": "batch",
626
- "x-ms-trigger-hint": "To see it work now, create an event in Office 365 Groups.",
627
- "x-ms-dev-triggerType": "QueryFilter",
628
- "x-ms-dev-triggerDateFormat": "iso",
629
- "x-ms-dev-triggerValueCollection": "value",
630
- "x-ms-dev-triggerValuePath": "createdDateTime",
631
- "x-ms-dev-queryfilterParamName": "$filter",
632
- "externalDocs": {
633
- "url": "https://docs.microsoft.com/connectors/office365groups/#when-there-is-a-new-event"
634
- }
635
- }
636
- },
637
- "/{connectionId}/v2/httprequest": {
638
- "post": {
639
- "summary": "Send an HTTP request V2",
640
- "description": "Construct a Microsoft Graph REST API request to invoke. There is one segment that is supported: /groups. Learn more: https://docs.microsoft.com/en-us/graph/use-the-api.",
641
- "operationId": "HttpRequestV2",
642
- "consumes": [],
643
- "produces": [],
644
- "parameters": [
645
- {
646
- "name": "connectionId",
647
- "in": "path",
648
- "required": true,
649
- "type": "string",
650
- "x-ms-visibility": "internal"
651
- },
652
- {
653
- "name": "Uri",
654
- "in": "header",
655
- "description": "The full or relative URI. Example: https://graph.microsoft.com/{version}/{resource}.",
656
- "required": true,
657
- "x-ms-summary": "URI",
658
- "type": "string"
659
- },
660
- {
661
- "name": "Method",
662
- "in": "header",
663
- "description": "The HTTP method (default is GET).",
664
- "default": "GET",
665
- "enum": [
666
- "GET",
667
- "POST",
668
- "PUT",
669
- "PATCH",
670
- "DELETE"
671
- ],
672
- "required": true,
673
- "x-ms-summary": "Method",
674
- "type": "string"
675
- },
676
- {
677
- "name": "Body",
678
- "in": "body",
679
- "description": "The request body content.",
680
- "required": false,
681
- "schema": {
682
- "format": "binary",
683
- "type": "string"
684
- },
685
- "x-ms-summary": "Body"
686
- },
687
- {
688
- "name": "ContentType",
689
- "in": "header",
690
- "description": "The content-type header for the body (default is application/json).",
691
- "required": false,
692
- "x-ms-summary": "Content-Type",
693
- "type": "string",
694
- "default": "application/json"
695
- },
696
- {
697
- "name": "CustomHeader1",
698
- "in": "header",
699
- "description": "Custom header 1. Specify in format: header-name: header-value",
700
- "required": false,
701
- "x-ms-summary": "CustomHeader1",
702
- "type": "string",
703
- "x-ms-visibility": "advanced"
704
- },
705
- {
706
- "name": "CustomHeader2",
707
- "in": "header",
708
- "description": "Custom header 2. Specify in format: header-name: header-value",
709
- "required": false,
710
- "x-ms-summary": "CustomHeader2",
711
- "type": "string",
712
- "x-ms-visibility": "advanced"
713
- },
714
- {
715
- "name": "CustomHeader3",
716
- "in": "header",
717
- "description": "Custom header 3. Specify in format: header-name: header-value",
718
- "required": false,
719
- "x-ms-summary": "CustomHeader3",
720
- "type": "string",
721
- "x-ms-visibility": "advanced"
722
- },
723
- {
724
- "name": "CustomHeader4",
725
- "in": "header",
726
- "description": "Custom header 4. Specify in format: header-name: header-value",
727
- "required": false,
728
- "x-ms-summary": "CustomHeader4",
729
- "type": "string",
730
- "x-ms-visibility": "advanced"
731
- },
732
- {
733
- "name": "CustomHeader5",
734
- "in": "header",
735
- "description": "Custom header 5. Specify in format: header-name: header-value",
736
- "required": false,
737
- "x-ms-summary": "CustomHeader5",
738
- "type": "string",
739
- "x-ms-visibility": "advanced"
740
- }
741
- ],
742
- "responses": {
743
- "200": {
744
- "description": "OK",
745
- "schema": {
746
- "$ref": "#/definitions/ObjectWithoutType"
747
- }
748
- },
749
- "default": {
750
- "description": "Operation Failed."
751
- }
752
- },
753
- "deprecated": false,
754
- "x-ms-visibility": "important",
755
- "x-ms-api-annotation": {
756
- "status": "Production",
757
- "family": "HttpRequest",
758
- "revision": 2
759
- },
760
- "externalDocs": {
761
- "url": "https://docs.microsoft.com/connectors/office365groups/#send-an-http-request-v2"
762
- }
763
- }
764
- },
765
- "/{connectionId}/httprequest": {
766
- "post": {
767
- "summary": "Send an HTTP request",
768
- "description": "Construct a Microsoft Graph REST API request to invoke. Learn more: https://docs.microsoft.com/en-us/graph/use-the-api",
769
- "operationId": "HttpRequest",
770
- "consumes": [],
771
- "produces": [],
772
- "parameters": [
773
- {
774
- "name": "connectionId",
775
- "in": "path",
776
- "required": true,
777
- "type": "string",
778
- "x-ms-visibility": "internal"
779
- },
780
- {
781
- "name": "Uri",
782
- "in": "header",
783
- "description": "The full or relative URI. Example: https://graph.microsoft.com/{version}/{resource}.",
784
- "required": true,
785
- "x-ms-summary": "URI",
786
- "type": "string"
787
- },
788
- {
789
- "name": "Method",
790
- "in": "header",
791
- "description": "The HTTP method (default is GET).",
792
- "default": "GET",
793
- "enum": [
794
- "GET",
795
- "POST",
796
- "PUT",
797
- "PATCH",
798
- "DELETE"
799
- ],
800
- "required": true,
801
- "x-ms-summary": "Method",
802
- "type": "string"
803
- },
804
- {
805
- "name": "Body",
806
- "in": "body",
807
- "description": "The request body content.",
808
- "required": false,
809
- "schema": {
810
- "format": "binary",
811
- "type": "string"
812
- },
813
- "x-ms-summary": "Body"
814
- },
815
- {
816
- "name": "ContentType",
817
- "in": "header",
818
- "description": "The content-type header for the body (default is application/json).",
819
- "required": false,
820
- "x-ms-summary": "Content-Type",
821
- "type": "string",
822
- "default": "application/json"
823
- },
824
- {
825
- "name": "CustomHeader1",
826
- "in": "header",
827
- "description": "Custom header 1. Specify in format: header-name: header-value",
828
- "required": false,
829
- "x-ms-summary": "CustomHeader1",
830
- "type": "string",
831
- "x-ms-visibility": "advanced"
832
- },
833
- {
834
- "name": "CustomHeader2",
835
- "in": "header",
836
- "description": "Custom header 2. Specify in format: header-name: header-value",
837
- "required": false,
838
- "x-ms-summary": "CustomHeader2",
839
- "type": "string",
840
- "x-ms-visibility": "advanced"
841
- },
842
- {
843
- "name": "CustomHeader3",
844
- "in": "header",
845
- "description": "Custom header 3. Specify in format: header-name: header-value",
846
- "required": false,
847
- "x-ms-summary": "CustomHeader3",
848
- "type": "string",
849
- "x-ms-visibility": "advanced"
850
- },
851
- {
852
- "name": "CustomHeader4",
853
- "in": "header",
854
- "description": "Custom header 4. Specify in format: header-name: header-value",
855
- "required": false,
856
- "x-ms-summary": "CustomHeader4",
857
- "type": "string",
858
- "x-ms-visibility": "advanced"
859
- },
860
- {
861
- "name": "CustomHeader5",
862
- "in": "header",
863
- "description": "Custom header 5. Specify in format: header-name: header-value",
864
- "required": false,
865
- "x-ms-summary": "CustomHeader5",
866
- "type": "string",
867
- "x-ms-visibility": "advanced"
868
- }
869
- ],
870
- "responses": {
871
- "200": {
872
- "description": "OK",
873
- "schema": {
874
- "$ref": "#/definitions/ObjectWithoutType"
875
- }
876
- },
877
- "default": {
878
- "description": "Operation Failed."
879
- }
880
- },
881
- "deprecated": true,
882
- "x-ms-visibility": "important",
883
- "x-ms-api-annotation": {
884
- "status": "Production",
885
- "family": "HttpRequest",
886
- "revision": 1
887
- },
888
- "externalDocs": {
889
- "url": "https://docs.microsoft.com/connectors/office365groups/#send-an-http-request-%5bdeprecated%5d"
890
- }
891
- }
892
- },
893
- "/{connectionId}/v1.0/directory/deletedItems/microsoft.graph.group": {
894
- "get": {
895
- "summary": "List deleted groups",
896
- "description": "Lists deleted groups that can be restored.",
897
- "operationId": "ListDeletedGroups",
898
- "responses": {
899
- "200": {
900
- "description": "Operation successful",
901
- "schema": {
902
- "$ref": "#/definitions/ListGroups_Response"
903
- }
904
- }
905
- },
906
- "deprecated": false,
907
- "x-ms-no-generic-test": true,
908
- "x-ms-visibility": "advanced",
909
- "externalDocs": {
910
- "url": "https://docs.microsoft.com/connectors/office365groups/#list-deleted-groups"
911
- },
912
- "parameters": [
913
- {
914
- "name": "connectionId",
915
- "in": "path",
916
- "required": true,
917
- "type": "string",
918
- "x-ms-visibility": "internal"
919
- }
920
- ]
921
- }
922
- },
923
- "/{connectionId}/v1.0/directory/deletedItems/{groupId}/restore": {
924
- "post": {
925
- "summary": "Restore a deleted group",
926
- "description": "Restore a recently deleted group",
927
- "operationId": "RestoreDeletedGroup",
928
- "parameters": [
929
- {
930
- "name": "connectionId",
931
- "in": "path",
932
- "required": true,
933
- "type": "string",
934
- "x-ms-visibility": "internal"
935
- },
936
- {
937
- "$ref": "#/parameters/deletedGroupId__in_path"
938
- }
939
- ],
940
- "responses": {
941
- "200": {
942
- "description": "Operation successful"
943
- }
944
- },
945
- "deprecated": false,
946
- "x-ms-no-generic-test": true,
947
- "x-ms-visibility": "advanced",
948
- "externalDocs": {
949
- "url": "https://docs.microsoft.com/connectors/office365groups/#restore-a-deleted-group"
950
- }
951
- }
952
- },
953
- "/{connectionId}/v1.0/directory/deletedItems/getUserOwnedObjects": {
954
- "post": {
955
- "summary": "List deleted groups by owner",
956
- "description": "List deleted groups that can be restored by owner",
957
- "operationId": "ListDeletedGroupsByOwner",
958
- "parameters": [
959
- {
960
- "name": "connectionId",
961
- "in": "path",
962
- "required": true,
963
- "type": "string",
964
- "x-ms-visibility": "internal"
965
- },
966
- {
967
- "name": "userId",
968
- "in": "header",
969
- "description": "Enter a user id.",
970
- "required": true,
971
- "x-ms-summary": "User Id",
972
- "x-ms-visibility": "important",
973
- "type": "string",
974
- "format": "guid"
975
- }
976
- ],
977
- "responses": {
978
- "200": {
979
- "description": "Operation successful",
980
- "schema": {
981
- "$ref": "#/definitions/ListGroups_Response"
982
- }
983
- }
984
- },
985
- "deprecated": false,
986
- "x-ms-no-generic-test": true,
987
- "x-ms-visibility": "advanced",
988
- "externalDocs": {
989
- "url": "https://docs.microsoft.com/connectors/office365groups/#list-deleted-groups-by-owner"
990
- }
991
- }
992
- }
993
- },
994
- "definitions": {
995
- "SensitivityLabelMetadata": {
996
- "type": "object",
997
- "properties": {
998
- "sensitivityLabelId": {
999
- "type": "string",
1000
- "description": "SensitivityLabel Id.",
1001
- "x-ms-summary": "SensitivityLabel Id",
1002
- "title": "sensitivityLabelId"
1003
- },
1004
- "name": {
1005
- "type": "string",
1006
- "description": "SensitivityLabel name.",
1007
- "x-ms-summary": "name",
1008
- "title": "name"
1009
- },
1010
- "displayName": {
1011
- "type": "string",
1012
- "description": "SensitivityLabel displayName info",
1013
- "x-ms-summary": "SensitivityLabel displayName info",
1014
- "title": "displayName"
1015
- },
1016
- "tooltip": {
1017
- "type": "string",
1018
- "description": "SensitivityLabel details on tooltip.",
1019
- "x-ms-summary": "tooltip info",
1020
- "title": "tooltip"
1021
- },
1022
- "priority": {
1023
- "type": "integer",
1024
- "format": "int32",
1025
- "description": "SensitivityLabel priority.",
1026
- "x-ms-summary": "priority of SensitivityLabel",
1027
- "title": "priority"
1028
- },
1029
- "color": {
1030
- "type": "string",
1031
- "description": "SensitivityLabel color.",
1032
- "x-ms-summary": "color to be displayed for SensitivityLabel.",
1033
- "title": "color"
1034
- },
1035
- "isEncrypted": {
1036
- "type": "boolean",
1037
- "description": " is SensitivityLabel Encrypted.",
1038
- "x-ms-summary": "isEncrypted status of SensitivityLabel",
1039
- "title": "isEncrypted"
1040
- },
1041
- "isEnabled": {
1042
- "type": "boolean",
1043
- "description": "Whether SensitivityLabel is Enabled.",
1044
- "x-ms-summary": "Whether SensitivityLabel is Enabled.",
1045
- "title": "isEnabled"
1046
- },
1047
- "isParent": {
1048
- "type": "boolean",
1049
- "description": "Whether SensitivityLabel is Parent.",
1050
- "x-ms-summary": "Whether SensitivityLabel is Parent",
1051
- "title": "isParent"
1052
- },
1053
- "parentSensitivityLabelId": {
1054
- "type": "string",
1055
- "description": "Parent SensitivityLabel Id.",
1056
- "x-ms-summary": "Parent SensitivityLabel Id",
1057
- "title": "parentSensitivityLabelId"
1058
- }
1059
- }
1060
- },
1061
- "ListGroupMembers_Response": {
1062
- "type": "object",
1063
- "properties": {
1064
- "@odata.context": {
1065
- "type": "string",
1066
- "description": "The OData context.",
1067
- "title": "OData context",
1068
- "x-ms-visibility": "internal"
1069
- },
1070
- "@odata.nextLink": {
1071
- "type": "string",
1072
- "description": "Only used in Power Apps Canvas to genereate the `$skipToken` for pagination. Power Automate and Logic Apps must use the pagination setting.",
1073
- "title": "OData NextLink",
1074
- "x-ms-visibility": "advanced"
1075
- },
1076
- "value": {
1077
- "description": "value",
1078
- "type": "array",
1079
- "items": {
1080
- "type": "object",
1081
- "properties": {
1082
- "id": {
1083
- "description": "Unique id of the user.",
1084
- "type": "string",
1085
- "x-ms-visibility": "advanced",
1086
- "x-ms-summary": "User Id"
1087
- },
1088
- "displayName": {
1089
- "description": "User's display name.",
1090
- "type": "string",
1091
- "x-ms-summary": "Display Name"
1092
- },
1093
- "givenName": {
1094
- "description": "User's first name.",
1095
- "type": "string",
1096
- "x-ms-summary": "Given Name"
1097
- },
1098
- "jobTitle": {
1099
- "description": "User's job title.",
1100
- "type": "string",
1101
- "x-ms-summary": "Job Title"
1102
- },
1103
- "mail": {
1104
- "description": "User's email address.",
1105
- "type": "string",
1106
- "x-ms-summary": "Mail"
1107
- },
1108
- "mobilePhone": {
1109
- "description": "User's mobile number.",
1110
- "type": "string",
1111
- "x-ms-visibility": "advanced",
1112
- "x-ms-summary": "Mobile Phone"
1113
- },
1114
- "officeLocation": {
1115
- "description": "User's office address.",
1116
- "type": "string",
1117
- "x-ms-visibility": "advanced",
1118
- "x-ms-summary": "Office Location"
1119
- },
1120
- "surname": {
1121
- "description": "User's last name.",
1122
- "type": "string",
1123
- "x-ms-summary": "Surname"
1124
- },
1125
- "userPrincipalName": {
1126
- "description": "UPN id of the user.",
1127
- "type": "string",
1128
- "x-ms-visibility": "advanced",
1129
- "x-ms-summary": "User Principal Name"
1130
- }
1131
- }
1132
- }
1133
- }
1134
- }
1135
- },
1136
- "OnGroupMemberAddedOrRemoved_Response": {
1137
- "description": "value",
1138
- "type": "array",
1139
- "items": {
1140
- "type": "object",
1141
- "properties": {
1142
- "id": {
1143
- "description": "Unique id of the user.",
1144
- "type": "string",
1145
- "x-ms-visibility": "advanced",
1146
- "x-ms-summary": "User Id"
1147
- },
1148
- "@removed": {
1149
- "type": "object",
1150
- "properties": {
1151
- "reason": {
1152
- "description": "Reason that caused the user to be removed from the group.",
1153
- "type": "string",
1154
- "x-ms-summary": "Reason"
1155
- }
1156
- }
1157
- }
1158
- }
1159
- }
1160
- },
1161
- "ListOwnedGroups_Response": {
1162
- "type": "object",
1163
- "properties": {
1164
- "@odata.context": {
1165
- "description": "The OData context.",
1166
- "type": "string",
1167
- "x-ms-summary": "OData context",
1168
- "x-ms-visibility": "internal"
1169
- },
1170
- "value": {
1171
- "description": "value",
1172
- "type": "array",
1173
- "items": {
1174
- "type": "object",
1175
- "properties": {
1176
- "classification": {
1177
- "description": "O365 group classification.",
1178
- "type": "string",
1179
- "x-ms-summary": "Classification",
1180
- "x-ms-visibility": "advanced"
1181
- },
1182
- "createdDateTime": {
1183
- "format": "date-time",
1184
- "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1185
- "type": "string",
1186
- "x-ms-summary": "Created Date-Time",
1187
- "x-ms-visibility": "advanced"
1188
- },
1189
- "deletedDateTime": {
1190
- "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1191
- "type": "string",
1192
- "x-ms-summary": "Deleted Date-Time",
1193
- "x-ms-visibility": "advanced"
1194
- },
1195
- "description": {
1196
- "description": "More information about the group.",
1197
- "type": "string",
1198
- "x-ms-summary": "Description"
1199
- },
1200
- "displayName": {
1201
- "description": "O365 group name.",
1202
- "type": "string",
1203
- "x-ms-summary": "Name"
1204
- },
1205
- "id": {
1206
- "description": "Unique identifier of the group.",
1207
- "type": "string",
1208
- "x-ms-summary": "Group Id",
1209
- "x-ms-visibility": "advanced"
1210
- },
1211
- "mail": {
1212
- "description": "Email address of the group.",
1213
- "type": "string",
1214
- "x-ms-summary": "Email"
1215
- },
1216
- "mailEnabled": {
1217
- "description": "True if mail is enabled for the group.",
1218
- "type": "boolean",
1219
- "x-ms-summary": "Mail Enabled",
1220
- "x-ms-visibility": "advanced"
1221
- },
1222
- "mailNickname": {
1223
- "description": "Group nickname.",
1224
- "type": "string",
1225
- "x-ms-summary": "Nickname",
1226
- "x-ms-visibility": "advanced"
1227
- },
1228
- "onPremisesLastSyncDateTime": {
1229
- "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1230
- "type": "string",
1231
- "x-ms-summary": "On-Premises Last Sync Date-Time",
1232
- "x-ms-visibility": "advanced"
1233
- },
1234
- "onPremisesSecurityIdentifier": {
1235
- "description": "The on-premises security identifier.",
1236
- "type": "string",
1237
- "x-ms-summary": "On-Premises Security Identifier",
1238
- "x-ms-visibility": "advanced"
1239
- },
1240
- "onPremisesSyncEnabled": {
1241
- "description": "True if on-premises sync is enabled for the group.",
1242
- "type": "string",
1243
- "x-ms-summary": "On-Premises Sync Enabled",
1244
- "x-ms-visibility": "advanced"
1245
- },
1246
- "renewedDateTime": {
1247
- "format": "date-time",
1248
- "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1249
- "type": "string",
1250
- "x-ms-summary": "Renewed Date-Time",
1251
- "x-ms-visibility": "advanced"
1252
- },
1253
- "securityEnabled": {
1254
- "description": "True if the owner is security enabled.",
1255
- "type": "boolean",
1256
- "x-ms-summary": "Security Enabled",
1257
- "x-ms-visibility": "advanced"
1258
- },
1259
- "visibility": {
1260
- "description": "The owner's visibility.",
1261
- "type": "string",
1262
- "x-ms-summary": "Visibility",
1263
- "x-ms-visibility": "advanced"
1264
- },
1265
- "sensitivityLabelInfo": {
1266
- "description": "List of Sensitivity Label Information",
1267
- "type": "array",
1268
- "items": {
1269
- "$ref": "#/definitions/SensitivityLabelMetadata"
1270
- }
1271
- }
1272
- }
1273
- }
1274
- }
1275
- }
1276
- },
1277
- "ListOwnedGroups_V2_Response": {
1278
- "type": "object",
1279
- "properties": {
1280
- "@odata.context": {
1281
- "description": "The OData context.",
1282
- "type": "string",
1283
- "x-ms-summary": "OData context",
1284
- "x-ms-visibility": "internal"
1285
- },
1286
- "value": {
1287
- "description": "value",
1288
- "type": "array",
1289
- "items": {
1290
- "type": "object",
1291
- "properties": {
1292
- "classification": {
1293
- "description": "O365 group classification.",
1294
- "type": "string",
1295
- "x-ms-summary": "Classification",
1296
- "x-ms-visibility": "advanced"
1297
- },
1298
- "createdDateTime": {
1299
- "format": "date-time",
1300
- "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1301
- "type": "string",
1302
- "x-ms-summary": "Created Date-Time",
1303
- "x-ms-visibility": "advanced"
1304
- },
1305
- "description": {
1306
- "description": "More information about the group.",
1307
- "type": "string",
1308
- "x-ms-summary": "Description"
1309
- },
1310
- "displayName": {
1311
- "description": "O365 group name.",
1312
- "type": "string",
1313
- "x-ms-summary": "Name"
1314
- },
1315
- "id": {
1316
- "description": "Unique identifier of the group.",
1317
- "type": "string",
1318
- "x-ms-summary": "Group Id",
1319
- "x-ms-visibility": "advanced"
1320
- },
1321
- "mail": {
1322
- "description": "Email address of the group.",
1323
- "type": "string",
1324
- "x-ms-summary": "Email"
1325
- },
1326
- "mailEnabled": {
1327
- "description": "True if mail is enabled for the group.",
1328
- "type": "boolean",
1329
- "x-ms-summary": "Mail Enabled",
1330
- "x-ms-visibility": "advanced"
1331
- },
1332
- "mailNickname": {
1333
- "description": "Group nickname.",
1334
- "type": "string",
1335
- "x-ms-summary": "Nickname",
1336
- "x-ms-visibility": "advanced"
1337
- },
1338
- "onPremisesLastSyncDateTime": {
1339
- "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1340
- "type": "string",
1341
- "x-ms-summary": "On-Premises Last Sync Date-Time",
1342
- "x-ms-visibility": "advanced"
1343
- },
1344
- "onPremisesSecurityIdentifier": {
1345
- "description": "The on-premises security identifier.",
1346
- "type": "string",
1347
- "x-ms-summary": "On-Premises Security Identifier",
1348
- "x-ms-visibility": "advanced"
1349
- },
1350
- "onPremisesSyncEnabled": {
1351
- "description": "True if on-premises sync is enabled for the group.",
1352
- "type": "string",
1353
- "x-ms-summary": "On-Premises Sync Enabled",
1354
- "x-ms-visibility": "advanced"
1355
- },
1356
- "renewedDateTime": {
1357
- "format": "date-time",
1358
- "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1359
- "type": "string",
1360
- "x-ms-summary": "Renewed Date-Time",
1361
- "x-ms-visibility": "advanced"
1362
- },
1363
- "securityEnabled": {
1364
- "description": "True if the owner is security enabled.",
1365
- "type": "boolean",
1366
- "x-ms-summary": "Security Enabled",
1367
- "x-ms-visibility": "advanced"
1368
- },
1369
- "visibility": {
1370
- "description": "The owner's visibility.",
1371
- "type": "string",
1372
- "x-ms-summary": "Visibility",
1373
- "x-ms-visibility": "advanced"
1374
- },
1375
- "sensitivityLabelInfo": {
1376
- "description": "List of Sensitivity Label Information",
1377
- "type": "array",
1378
- "items": {
1379
- "$ref": "#/definitions/SensitivityLabelMetadata"
1380
- }
1381
- }
1382
- }
1383
- }
1384
- }
1385
- }
1386
- },
1387
- "ListGroups_Response": {
1388
- "type": "object",
1389
- "properties": {
1390
- "@odata.context": {
1391
- "type": "string",
1392
- "description": "The OData context.",
1393
- "title": "OData context",
1394
- "x-ms-visibility": "internal"
1395
- },
1396
- "@odata.nextLink": {
1397
- "type": "string",
1398
- "description": "Only used in Power Apps Canvas to genereate the `$skipToken` for pagination. Power Automate and Logic Apps must use the pagination setting.",
1399
- "title": "OData NextLink",
1400
- "x-ms-visibility": "advanced"
1401
- },
1402
- "value": {
1403
- "description": "value",
1404
- "type": "array",
1405
- "items": {
1406
- "type": "object",
1407
- "properties": {
1408
- "classification": {
1409
- "description": "O365 group classification.",
1410
- "type": "string",
1411
- "x-ms-summary": "Classification",
1412
- "x-ms-visibility": "advanced"
1413
- },
1414
- "createdDateTime": {
1415
- "format": "date-time",
1416
- "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1417
- "type": "string",
1418
- "x-ms-summary": "Created Date-Time",
1419
- "x-ms-visibility": "advanced"
1420
- },
1421
- "description": {
1422
- "description": "More information about the group.",
1423
- "type": "string",
1424
- "x-ms-summary": "Description"
1425
- },
1426
- "displayName": {
1427
- "description": "O365 group name.",
1428
- "type": "string",
1429
- "x-ms-summary": "Name"
1430
- },
1431
- "id": {
1432
- "description": "Unique identifier of the group.",
1433
- "type": "string",
1434
- "x-ms-summary": "Group Id",
1435
- "x-ms-visibility": "advanced"
1436
- },
1437
- "mail": {
1438
- "description": "Email address of the group.",
1439
- "type": "string",
1440
- "x-ms-summary": "Email"
1441
- },
1442
- "mailEnabled": {
1443
- "description": "True if mail is enabled for the group.",
1444
- "type": "boolean",
1445
- "x-ms-summary": "Mail Enabled",
1446
- "x-ms-visibility": "advanced"
1447
- },
1448
- "mailNickname": {
1449
- "description": "Group nickname.",
1450
- "type": "string",
1451
- "x-ms-summary": "Nickname",
1452
- "x-ms-visibility": "advanced"
1453
- },
1454
- "onPremisesLastSyncDateTime": {
1455
- "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1456
- "type": "string",
1457
- "x-ms-summary": "On-Premises Last Sync Date-Time",
1458
- "x-ms-visibility": "advanced"
1459
- },
1460
- "onPremisesSecurityIdentifier": {
1461
- "description": "The on-premises security identifier.",
1462
- "type": "string",
1463
- "x-ms-summary": "On-Premises Security Identifier",
1464
- "x-ms-visibility": "advanced"
1465
- },
1466
- "onPremisesSyncEnabled": {
1467
- "description": "True if on-premises sync is enabled for the group.",
1468
- "type": "boolean",
1469
- "x-ms-summary": "On-Premises Sync Enabled",
1470
- "x-ms-visibility": "advanced"
1471
- },
1472
- "renewedDateTime": {
1473
- "format": "date-time",
1474
- "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1475
- "type": "string",
1476
- "x-ms-summary": "Renewed Date-Time",
1477
- "x-ms-visibility": "advanced"
1478
- },
1479
- "securityEnabled": {
1480
- "description": "True if the owner is security enabled.",
1481
- "type": "boolean",
1482
- "x-ms-summary": "Security Enabled",
1483
- "x-ms-visibility": "advanced"
1484
- },
1485
- "visibility": {
1486
- "description": "The owner's visibility.",
1487
- "type": "string",
1488
- "x-ms-summary": "Visibility",
1489
- "x-ms-visibility": "advanced"
1490
- },
1491
- "sensitivityLabelInfo": {
1492
- "description": "List of Sensitivity Label Information",
1493
- "type": "array",
1494
- "items": {
1495
- "$ref": "#/definitions/SensitivityLabelMetadata"
1496
- }
1497
- }
1498
- }
1499
- }
1500
- }
1501
- }
1502
- },
1503
- "CreateCalendarEvent_Response": {
1504
- "type": "object",
1505
- "properties": {
1506
- "id": {
1507
- "description": "Unique id of the event.",
1508
- "type": "string",
1509
- "x-ms-visibility": "advanced",
1510
- "x-ms-summary": "Id"
1511
- },
1512
- "reminderMinutesBeforeStart": {
1513
- "format": "int32",
1514
- "description": "Time in minutes before event starts to remind.",
1515
- "type": "integer",
1516
- "x-ms-visibility": "advanced",
1517
- "x-ms-summary": "Reminder Start Duration"
1518
- },
1519
- "isReminderOn": {
1520
- "description": "Set to true if the event has a reminder.",
1521
- "type": "boolean",
1522
- "x-ms-visibility": "advanced",
1523
- "x-ms-summary": "Is Reminder On"
1524
- },
1525
- "subject": {
1526
- "description": "Title of the event.",
1527
- "type": "string",
1528
- "x-ms-summary": "Subject"
1529
- },
1530
- "importance": {
1531
- "description": "The importance of the event: Low, Normal, or High.",
1532
- "type": "string",
1533
- "x-ms-summary": "Importance"
1534
- },
1535
- "isAllDay": {
1536
- "description": "True if the event is an all day event.",
1537
- "type": "boolean",
1538
- "x-ms-visibility": "advanced",
1539
- "x-ms-summary": "Is All Day"
1540
- },
1541
- "responseRequested": {
1542
- "description": "True if a response was requested for the event.",
1543
- "type": "boolean",
1544
- "x-ms-visibility": "advanced",
1545
- "x-ms-summary": "Response Requested"
1546
- },
1547
- "showAs": {
1548
- "description": "Status to show during the event.",
1549
- "type": "string",
1550
- "x-ms-visibility": "advanced",
1551
- "x-ms-summary": "Show As"
1552
- },
1553
- "body": {
1554
- "description": "body",
1555
- "type": "object",
1556
- "properties": {
1557
- "contentType": {
1558
- "description": "Text or Html.",
1559
- "type": "string",
1560
- "x-ms-visibility": "advanced",
1561
- "x-ms-summary": "Content Type"
1562
- },
1563
- "content": {
1564
- "description": "The content of the body of this event.",
1565
- "type": "string",
1566
- "x-ms-visibility": "advanced",
1567
- "x-ms-summary": "Content"
1568
- }
1569
- },
1570
- "x-ms-summary": "Body"
1571
- },
1572
- "start": {
1573
- "description": "start",
1574
- "type": "object",
1575
- "properties": {
1576
- "dateTime": {
1577
- "format": "date-time",
1578
- "description": "Start time of the event (example: '2016-11-01T14:30:00-07:00').",
1579
- "type": "string",
1580
- "x-ms-summary": "Date Time"
1581
- },
1582
- "timeZone": {
1583
- "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
1584
- "default": "UTC",
1585
- "type": "string",
1586
- "x-ms-visibility": "advanced",
1587
- "x-ms-summary": "Time Zone"
1588
- }
1589
- },
1590
- "x-ms-summary": "Start"
1591
- },
1592
- "end": {
1593
- "description": "end",
1594
- "type": "object",
1595
- "properties": {
1596
- "dateTime": {
1597
- "format": "date-time",
1598
- "description": "End time of the event (example: '2016-11-01T15:30:00-07:00').",
1599
- "type": "string",
1600
- "x-ms-summary": "Date Time"
1601
- },
1602
- "timeZone": {
1603
- "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
1604
- "default": "UTC",
1605
- "type": "string",
1606
- "x-ms-visibility": "advanced",
1607
- "x-ms-summary": "Time Zone"
1608
- }
1609
- },
1610
- "x-ms-summary": "End"
1611
- },
1612
- "location": {
1613
- "description": "location",
1614
- "type": "object",
1615
- "properties": {
1616
- "displayName": {
1617
- "description": "The display name for the location of the event.",
1618
- "type": "string",
1619
- "x-ms-visibility": "advanced",
1620
- "x-ms-summary": "Name"
1621
- }
1622
- },
1623
- "x-ms-summary": "Location"
1624
- }
1625
- }
1626
- },
1627
- "UpdateCalendarEvent_Request": {
1628
- "required": [
1629
- "subject",
1630
- "start",
1631
- "end"
1632
- ],
1633
- "type": "object",
1634
- "properties": {
1635
- "subject": {
1636
- "description": "Title of the event.",
1637
- "type": "string",
1638
- "x-ms-summary": "Subject"
1639
- },
1640
- "start": {
1641
- "required": [
1642
- "dateTime",
1643
- "timeZone"
1644
- ],
1645
- "type": "object",
1646
- "properties": {
1647
- "dateTime": {
1648
- "format": "date-time",
1649
- "description": "Start time of the event (example: '2016-11-01T14:30:00').",
1650
- "type": "string",
1651
- "x-ms-summary": "Start Time"
1652
- },
1653
- "timeZone": {
1654
- "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
1655
- "default": "UTC",
1656
- "type": "string",
1657
- "x-ms-visibility": "internal",
1658
- "x-ms-summary": "Time zone"
1659
- }
1660
- }
1661
- },
1662
- "end": {
1663
- "required": [
1664
- "dateTime",
1665
- "timeZone"
1666
- ],
1667
- "type": "object",
1668
- "properties": {
1669
- "dateTime": {
1670
- "format": "date-time",
1671
- "description": "End time of the event (example: '2016-11-01T15:30:00').",
1672
- "type": "string",
1673
- "x-ms-summary": "End Time"
1674
- },
1675
- "timeZone": {
1676
- "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
1677
- "default": "UTC",
1678
- "type": "string",
1679
- "x-ms-visibility": "internal",
1680
- "x-ms-summary": "Time zone"
1681
- }
1682
- }
1683
- },
1684
- "body": {
1685
- "type": "object",
1686
- "properties": {
1687
- "content": {
1688
- "description": "Body of the message associated with the event.",
1689
- "type": "string",
1690
- "x-ms-visibility": "advanced",
1691
- "x-ms-summary": "Body"
1692
- },
1693
- "contentType": {
1694
- "description": "Pick the content type: Text or Html.",
1695
- "enum": [
1696
- "Text",
1697
- "Html"
1698
- ],
1699
- "type": "string",
1700
- "x-ms-visibility": "advanced",
1701
- "x-ms-summary": "Body Content Type"
1702
- }
1703
- }
1704
- },
1705
- "location": {
1706
- "type": "object",
1707
- "properties": {
1708
- "displayName": {
1709
- "description": "Location of the event.",
1710
- "type": "string",
1711
- "x-ms-visibility": "advanced",
1712
- "x-ms-summary": "Location"
1713
- }
1714
- }
1715
- },
1716
- "importance": {
1717
- "description": "The importance of the event: Low, Normal, or High.",
1718
- "enum": [
1719
- "Low",
1720
- "Normal",
1721
- "High"
1722
- ],
1723
- "type": "string",
1724
- "x-ms-visibility": "advanced",
1725
- "x-ms-summary": "Importance"
1726
- },
1727
- "isAllDay": {
1728
- "description": "Set to true if the event lasts all day.",
1729
- "type": "boolean",
1730
- "x-ms-visibility": "advanced",
1731
- "x-ms-summary": "Is All Day"
1732
- },
1733
- "isReminderOn": {
1734
- "description": "Set to true if the event has a reminder.",
1735
- "type": "boolean",
1736
- "x-ms-visibility": "advanced",
1737
- "x-ms-summary": "Is Reminder On"
1738
- },
1739
- "reminderMinutesBeforeStart": {
1740
- "format": "int32",
1741
- "description": "Time in minutes before event start to remind.",
1742
- "type": "integer",
1743
- "x-ms-visibility": "advanced",
1744
- "x-ms-summary": "Reminder Start Duration"
1745
- },
1746
- "showAs": {
1747
- "description": "Status to show during the event.",
1748
- "enum": [
1749
- "Free",
1750
- "Tentative",
1751
- "Busy",
1752
- "Oof",
1753
- "WorkingElsewhere",
1754
- "Unknown"
1755
- ],
1756
- "type": "string",
1757
- "x-ms-visibility": "advanced",
1758
- "x-ms-summary": "Show As"
1759
- },
1760
- "responseRequested": {
1761
- "description": "Set to true if the sender would like a response when the event is accepted or declined.",
1762
- "type": "boolean",
1763
- "x-ms-visibility": "advanced",
1764
- "x-ms-summary": "Response Requested"
1765
- }
1766
- },
1767
- "x-ms-test-value": {
1768
- "subject": "Test Event from Postman",
1769
- "start": {
1770
- "dateTime": "2017-12-31T14:00:00",
1771
- "timeZone": "UTC"
1772
- },
1773
- "end": {
1774
- "dateTime": "2017-12-31T14:30:00",
1775
- "timeZone": "UTC"
1776
- },
1777
- "originalStartTimeZone": "Pacific Standard Time",
1778
- "originalEndTimeZone": "Pacific Standard Time",
1779
- "body": {
1780
- "contentType": "text",
1781
- "content": "Test Body"
1782
- },
1783
- "location": {
1784
- "displayName": "Redmond"
1785
- },
1786
- "importance": "normal",
1787
- "isAllDay": false,
1788
- "reminderMinutesBeforeStart": 99,
1789
- "isReminderOn": true,
1790
- "showAs": "busy",
1791
- "responseRequested": true
1792
- }
1793
- },
1794
- "UpdateCalendarEvent_HTMLRequest": {
1795
- "required": [
1796
- "subject",
1797
- "start",
1798
- "end"
1799
- ],
1800
- "type": "object",
1801
- "properties": {
1802
- "subject": {
1803
- "description": "Title of the event.",
1804
- "type": "string",
1805
- "x-ms-summary": "Subject"
1806
- },
1807
- "start": {
1808
- "required": [
1809
- "dateTime",
1810
- "timeZone"
1811
- ],
1812
- "type": "object",
1813
- "properties": {
1814
- "dateTime": {
1815
- "format": "date-time",
1816
- "description": "Start time of the event (example: '2016-11-01T14:30:00').",
1817
- "type": "string",
1818
- "x-ms-summary": "Start Time"
1819
- },
1820
- "timeZone": {
1821
- "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
1822
- "default": "UTC",
1823
- "type": "string",
1824
- "x-ms-visibility": "internal",
1825
- "x-ms-summary": "Time zone"
1826
- }
1827
- }
1828
- },
1829
- "end": {
1830
- "required": [
1831
- "dateTime",
1832
- "timeZone"
1833
- ],
1834
- "type": "object",
1835
- "properties": {
1836
- "dateTime": {
1837
- "format": "date-time",
1838
- "description": "End time of the event (example: '2016-11-01T15:30:00').",
1839
- "type": "string",
1840
- "x-ms-summary": "End Time"
1841
- },
1842
- "timeZone": {
1843
- "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
1844
- "default": "UTC",
1845
- "type": "string",
1846
- "x-ms-visibility": "internal",
1847
- "x-ms-summary": "Time zone"
1848
- }
1849
- }
1850
- },
1851
- "body": {
1852
- "type": "object",
1853
- "required": [
1854
- "contentType"
1855
- ],
1856
- "properties": {
1857
- "content": {
1858
- "description": "Body of the message associated with the event.",
1859
- "type": "string",
1860
- "format": "html",
1861
- "x-ms-visibility": "advanced",
1862
- "x-ms-summary": "Body"
1863
- },
1864
- "contentType": {
1865
- "description": "Pick the content type: Text or Html.",
1866
- "default": "Html",
1867
- "type": "string",
1868
- "x-ms-summary": "Body Content Type",
1869
- "x-ms-visibility": "internal"
1870
- }
1871
- }
1872
- },
1873
- "location": {
1874
- "type": "object",
1875
- "properties": {
1876
- "displayName": {
1877
- "description": "Location of the event.",
1878
- "type": "string",
1879
- "x-ms-visibility": "advanced",
1880
- "x-ms-summary": "Location"
1881
- }
1882
- }
1883
- },
1884
- "importance": {
1885
- "description": "The importance of the event: Low, Normal, or High.",
1886
- "enum": [
1887
- "Low",
1888
- "Normal",
1889
- "High"
1890
- ],
1891
- "type": "string",
1892
- "x-ms-visibility": "advanced",
1893
- "x-ms-summary": "Importance"
1894
- },
1895
- "isAllDay": {
1896
- "description": "Set to true if the event lasts all day.",
1897
- "type": "boolean",
1898
- "x-ms-visibility": "advanced",
1899
- "x-ms-summary": "Is All Day"
1900
- },
1901
- "isReminderOn": {
1902
- "description": "Set to true if the event has a reminder.",
1903
- "type": "boolean",
1904
- "x-ms-visibility": "advanced",
1905
- "x-ms-summary": "Is Reminder On"
1906
- },
1907
- "reminderMinutesBeforeStart": {
1908
- "format": "int32",
1909
- "description": "Time in minutes before event start to remind.",
1910
- "type": "integer",
1911
- "x-ms-visibility": "advanced",
1912
- "x-ms-summary": "Reminder Start Duration"
1913
- },
1914
- "showAs": {
1915
- "description": "Status to show during the event.",
1916
- "enum": [
1917
- "Free",
1918
- "Tentative",
1919
- "Busy",
1920
- "Oof",
1921
- "WorkingElsewhere",
1922
- "Unknown"
1923
- ],
1924
- "type": "string",
1925
- "x-ms-visibility": "advanced",
1926
- "x-ms-summary": "Show As"
1927
- },
1928
- "responseRequested": {
1929
- "description": "Set to true if the sender would like a response when the event is accepted or declined.",
1930
- "type": "boolean",
1931
- "x-ms-visibility": "advanced",
1932
- "x-ms-summary": "Response Requested"
1933
- }
1934
- },
1935
- "x-ms-test-value": {
1936
- "subject": "Test Event from Postman",
1937
- "start": {
1938
- "dateTime": "2017-12-31T15:00:00",
1939
- "timeZone": "UTC"
1940
- },
1941
- "end": {
1942
- "dateTime": "2017-12-31T15:30:00",
1943
- "timeZone": "UTC"
1944
- },
1945
- "originalStartTimeZone": "Pacific Standard Time",
1946
- "originalEndTimeZone": "Pacific Standard Time",
1947
- "body": {
1948
- "content": "Test Body"
1949
- },
1950
- "location": {
1951
- "displayName": "Redmond"
1952
- },
1953
- "importance": "normal",
1954
- "isAllDay": false,
1955
- "reminderMinutesBeforeStart": 99,
1956
- "isReminderOn": true,
1957
- "showAs": "busy",
1958
- "responseRequested": true
1959
- }
1960
- },
1961
- "OnNewEvent_Response": {
1962
- "description": "value",
1963
- "type": "array",
1964
- "items": {
1965
- "type": "object",
1966
- "properties": {
1967
- "id": {
1968
- "description": "Unique id of the event.",
1969
- "type": "string",
1970
- "x-ms-visibility": "advanced",
1971
- "x-ms-summary": "Id"
1972
- },
1973
- "reminderMinutesBeforeStart": {
1974
- "format": "int32",
1975
- "description": "The number of minutes before the start of the event the reminder will fire.",
1976
- "type": "integer",
1977
- "x-ms-visibility": "advanced",
1978
- "x-ms-summary": "Reminder Start Duration"
1979
- },
1980
- "isReminderOn": {
1981
- "description": "Set to true if the event has a reminder.",
1982
- "type": "boolean",
1983
- "x-ms-visibility": "advanced",
1984
- "x-ms-summary": "Is Reminder On"
1985
- },
1986
- "subject": {
1987
- "description": "Title of the event.",
1988
- "type": "string",
1989
- "x-ms-summary": "Subject"
1990
- },
1991
- "importance": {
1992
- "description": "The importance of the event: Low, Normal, or High.",
1993
- "type": "string",
1994
- "x-ms-summary": "Importance"
1995
- },
1996
- "isAllDay": {
1997
- "description": "Set to true if the event lasts all day.",
1998
- "type": "boolean",
1999
- "x-ms-visibility": "advanced",
2000
- "x-ms-summary": "Is All Day"
2001
- },
2002
- "responseRequested": {
2003
- "description": "Set to true if the sender would like a response when the event is accepted or declined.",
2004
- "type": "boolean",
2005
- "x-ms-visibility": "advanced",
2006
- "x-ms-summary": "Response Requested"
2007
- },
2008
- "showAs": {
2009
- "description": "Status to show during the event.",
2010
- "type": "string",
2011
- "x-ms-visibility": "advanced",
2012
- "x-ms-summary": "Show As"
2013
- },
2014
- "body": {
2015
- "description": "body",
2016
- "type": "object",
2017
- "properties": {
2018
- "contentType": {
2019
- "description": "Body of the message associated with the event.",
2020
- "type": "string",
2021
- "x-ms-visibility": "advanced",
2022
- "x-ms-summary": "Content Type"
2023
- },
2024
- "content": {
2025
- "description": "Pick the content type: Text or Html.",
2026
- "type": "string",
2027
- "x-ms-visibility": "advanced",
2028
- "x-ms-summary": "Content"
2029
- }
2030
- },
2031
- "x-ms-summary": "Body"
2032
- },
2033
- "start": {
2034
- "description": "start",
2035
- "type": "object",
2036
- "properties": {
2037
- "dateTime": {
2038
- "format": "date-time",
2039
- "description": "Start time of the event (example: '2016-11-01T14:30:00-07:00').",
2040
- "type": "string",
2041
- "x-ms-summary": "Date Time"
2042
- },
2043
- "timeZone": {
2044
- "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
2045
- "type": "string",
2046
- "x-ms-visibility": "advanced",
2047
- "x-ms-summary": "Time Zone"
2048
- }
2049
- },
2050
- "x-ms-summary": "Start"
2051
- },
2052
- "end": {
2053
- "description": "end",
2054
- "type": "object",
2055
- "properties": {
2056
- "dateTime": {
2057
- "format": "date-time",
2058
- "description": "End time of the event (example: '2016-11-01T15:30:00-07:00').",
2059
- "type": "string",
2060
- "x-ms-summary": "Date Time"
2061
- },
2062
- "timeZone": {
2063
- "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
2064
- "type": "string",
2065
- "x-ms-visibility": "advanced",
2066
- "x-ms-summary": "Time Zone"
2067
- }
2068
- },
2069
- "x-ms-summary": "End"
2070
- },
2071
- "location": {
2072
- "description": "location",
2073
- "type": "object",
2074
- "properties": {
2075
- "displayName": {
2076
- "description": "The display name for the location of the event.",
2077
- "type": "string",
2078
- "x-ms-visibility": "advanced",
2079
- "x-ms-summary": "Name"
2080
- }
2081
- },
2082
- "x-ms-summary": "Location"
2083
- }
2084
- }
2085
- },
2086
- "x-ms-summary": "value"
2087
- },
2088
- "ObjectWithoutType": {}
2089
- },
2090
- "parameters": {
2091
- "groupId__in_path": {
2092
- "name": "groupId",
2093
- "in": "path",
2094
- "description": "Pick a group from the drop down or enter group id.",
2095
- "required": true,
2096
- "x-ms-summary": "Group Id",
2097
- "x-ms-dynamic-values": {
2098
- "operationId": "ListOwnedGroups_V2",
2099
- "value-path": "id",
2100
- "value-title": "displayName",
2101
- "value-collection": "value"
2102
- },
2103
- "x-ms-visibility": "important",
2104
- "type": "string",
2105
- "format": "guid"
2106
- },
2107
- "groupId__in_query": {
2108
- "name": "groupId",
2109
- "in": "query",
2110
- "description": "Pick a group from the drop down or enter group id.",
2111
- "required": true,
2112
- "x-ms-summary": "Group Id",
2113
- "x-ms-dynamic-values": {
2114
- "operationId": "ListOwnedGroups_V2",
2115
- "value-path": "id",
2116
- "value-title": "displayName",
2117
- "value-collection": "value"
2118
- },
2119
- "x-ms-visibility": "important",
2120
- "type": "string",
2121
- "format": "guid"
2122
- },
2123
- "deletedGroupId__in_path": {
2124
- "name": "groupId",
2125
- "in": "path",
2126
- "description": "Pick a group from the drop down or enter group id.",
2127
- "required": true,
2128
- "x-ms-summary": "Group Id",
2129
- "x-ms-visibility": "important",
2130
- "type": "string",
2131
- "format": "guid"
2132
- },
2133
- "extractSensitivityLabel": {
2134
- "name": "extractSensitivityLabel",
2135
- "in": "query",
2136
- "required": false,
2137
- "type": "boolean",
2138
- "description": "A boolean whether to extract sensitivity label Id for associated artefact.",
2139
- "x-ms-summary": "Extract Sensitivity Label",
2140
- "x-ms-visibility": "important"
2141
- },
2142
- "fetchSensitivityLabelMetadata": {
2143
- "name": "fetchSensitivityLabelMetadata",
2144
- "in": "query",
2145
- "required": false,
2146
- "type": "boolean",
2147
- "description": "A boolean whether to fetch sensitivity label Metadata for associated LabelId.",
2148
- "x-ms-summary": "Sensitivity Label Metadata",
2149
- "x-ms-visibility": "important"
2150
- }
2151
- },
2152
- "securityDefinitions": {},
2153
- "security": [],
2154
- "x-ms-connector-metadata": [
2155
- {
2156
- "propertyName": "Website",
2157
- "propertyValue": "https://www.office.com/"
2158
- },
2159
- {
2160
- "propertyName": "Privacy policy",
2161
- "propertyValue": "https://privacy.microsoft.com/"
2162
- },
2163
- {
2164
- "propertyName": "Categories",
2165
- "propertyValue": "AI;Business Intelligence"
2166
- }
2167
- ],
2168
- "externalDocs": {
2169
- "url": "https://docs.microsoft.com/connectors/office365groups"
2170
- }
2171
- },
2172
- "runtimeUrls": [
2173
- "https://unitedstates-002.azure-apim.net/apim/office365groups"
2174
- ],
2175
- "primaryRuntimeUrl": "https://unitedstates-002.azure-apim.net/apim/office365groups",
2176
- "doNotUseApiHubNetRuntimeUrl": "https://unitedstates-002.azure-apim.net/apim/office365groups",
2177
- "metadata": {
2178
- "source": "marketplace",
2179
- "brandColor": "#EB3C00",
2180
- "useNewApimVersion": "true",
2181
- "version": {
2182
- "previous": "1759\\1.0.1759.4274",
2183
- "current": "releases/v1.0.1777\\1.0.1777.4410"
2184
- }
2185
- },
2186
- "capabilities": [
2187
- "actions",
2188
- "triggers"
2189
- ],
2190
- "interfaces": {},
2191
- "description": "Office 365 Groups lets you manage group membership and calendar events in your organization using your Office 365 account. You can perform various actions such as get group roster, add or remove members and create group events.",
2192
- "createdTime": "2018-09-18T20:23:24.4590653Z",
2193
- "changedTime": "2025-10-16T05:32:37.4996627Z",
2194
- "releaseTag": "Production",
2195
- "tier": "Standard",
2196
- "publisher": "Microsoft",
2197
- "scopes": {
2198
- "will": [],
2199
- "wont": []
2200
- },
2201
- "rateLimit": 0,
2202
- "apiVersion": "None"
2203
- }
1
+ {
2
+ "name": "shared_office365groups",
3
+ "id": "/providers/Microsoft.PowerApps/apis/shared_office365groups",
4
+ "type": "Microsoft.PowerApps/apis",
5
+ "properties": {
6
+ "displayName": "Office 365 Groups",
7
+ "iconUri": "https://conn-afd-prod-endpoint-bmc9bqahasf3grgk.b01.azurefd.net/releases/v1.0.1777/1.0.1777.4410/office365groups/icon.png",
8
+ "iconBrandColor": "#EB3C00",
9
+ "apiEnvironment": "Shared",
10
+ "isCustomApi": false,
11
+ "blobUrisAreProxied": false,
12
+ "connectionParameters": {
13
+ "token": {
14
+ "type": "oauthSetting",
15
+ "oAuthSettings": {
16
+ "identityProvider": "aadcertificate",
17
+ "clientId": "7ab7862c-4c57-491e-8a45-d52a7e023983",
18
+ "scopes": [
19
+ "Group.ReadWrite.All offline_access"
20
+ ],
21
+ "redirectMode": "GlobalPerConnector",
22
+ "redirectUrl": "https://global.consent.azure-apim.net/redirect/office365groups",
23
+ "properties": {
24
+ "IsFirstParty": "True",
25
+ "AzureActiveDirectoryResourceId": "https://graph.microsoft.com/",
26
+ "IsOnbehalfofLoginSupported": true
27
+ },
28
+ "customParameters": {
29
+ "ResourceUri": {
30
+ "value": "https://graph.microsoft.com/"
31
+ },
32
+ "LoginUri": {
33
+ "value": "https://login.windows.net"
34
+ },
35
+ "LoginUriAAD": {
36
+ "value": "https://login.windows.net"
37
+ }
38
+ }
39
+ }
40
+ },
41
+ "token:TenantId": {
42
+ "type": "string",
43
+ "metadata": {
44
+ "sourceType": "AzureActiveDirectoryTenant"
45
+ },
46
+ "uiDefinition": {
47
+ "displayName": "Tenant",
48
+ "description": "The tenant ID of for the Microsoft Entra ID application",
49
+ "constraints": {
50
+ "required": "false",
51
+ "hidden": "true"
52
+ }
53
+ }
54
+ }
55
+ },
56
+ "swagger": {
57
+ "swagger": "2.0",
58
+ "info": {
59
+ "version": "1.0.0",
60
+ "title": "Office 365 Groups",
61
+ "description": "Office 365 Groups lets you manage group membership and calendar events in your organization using your Office 365 account. You can perform various actions such as get group roster, add or remove members and create group events.",
62
+ "x-ms-api-annotation": {
63
+ "status": "Production"
64
+ },
65
+ "contact": {
66
+ "name": "Office 365 Groups",
67
+ "url": "https://learn.microsoft.com/en-us/connectors/office365groups/",
68
+ "email": "idcknowledgeeco@microsoft.com"
69
+ }
70
+ },
71
+ "host": "unitedstates-002.azure-apim.net",
72
+ "basePath": "/apim/office365groups",
73
+ "schemes": [
74
+ "https"
75
+ ],
76
+ "consumes": [],
77
+ "produces": [
78
+ "application/json"
79
+ ],
80
+ "paths": {
81
+ "/{connectionId}/v1.0/groups/{groupId}/members": {
82
+ "get": {
83
+ "summary": "List group members",
84
+ "description": "This operation returns a list of all members in the given group and their details such as name, title, email, etc. You can query up to 1000 items using Top parameter. In case you need to retrieve more than 1000 values please turn on Settings->Pagination feature and provide Threshold limit.",
85
+ "operationId": "ListGroupMembers",
86
+ "parameters": [
87
+ {
88
+ "name": "connectionId",
89
+ "in": "path",
90
+ "required": true,
91
+ "type": "string",
92
+ "x-ms-visibility": "internal"
93
+ },
94
+ {
95
+ "$ref": "#/parameters/groupId__in_path"
96
+ },
97
+ {
98
+ "name": "$top",
99
+ "in": "query",
100
+ "x-ms-summary": "Top",
101
+ "description": "Number of group members to retrieve (from 1 to 999, default is 100).",
102
+ "required": false,
103
+ "x-ms-visibility": "advanced",
104
+ "type": "integer",
105
+ "format": "int32"
106
+ }
107
+ ],
108
+ "responses": {
109
+ "200": {
110
+ "description": "Operation Successful",
111
+ "schema": {
112
+ "$ref": "#/definitions/ListGroupMembers_Response"
113
+ }
114
+ }
115
+ },
116
+ "deprecated": false,
117
+ "x-ms-visibility": "advanced",
118
+ "x-ms-test-value": "ee115782-220d-4acc-92c4-e261619d63cd",
119
+ "x-ms-pageable": {
120
+ "nextLinkName": "@odata.nextLink"
121
+ },
122
+ "externalDocs": {
123
+ "url": "https://docs.microsoft.com/connectors/office365groups/#list-group-members"
124
+ }
125
+ }
126
+ },
127
+ "/{connectionId}/trigger/v1.0/groups/delta": {
128
+ "get": {
129
+ "summary": "When a group member is added or removed",
130
+ "description": "This operation triggers when a member is added to or removed from the given group.",
131
+ "operationId": "OnGroupMembershipChange",
132
+ "parameters": [
133
+ {
134
+ "name": "connectionId",
135
+ "in": "path",
136
+ "required": true,
137
+ "type": "string",
138
+ "x-ms-visibility": "internal"
139
+ },
140
+ {
141
+ "$ref": "#/parameters/groupId__in_query"
142
+ },
143
+ {
144
+ "name": "$select",
145
+ "in": "query",
146
+ "x-ms-summary": "Select",
147
+ "x-ms-test-value": "members",
148
+ "x-ms-visibility": "internal",
149
+ "type": "string",
150
+ "default": "members"
151
+ }
152
+ ],
153
+ "responses": {
154
+ "200": {
155
+ "description": "Operation Successful",
156
+ "schema": {
157
+ "$ref": "#/definitions/OnGroupMemberAddedOrRemoved_Response"
158
+ }
159
+ }
160
+ },
161
+ "deprecated": false,
162
+ "x-ms-visibility": "advanced",
163
+ "x-ms-test-value": "ee115782-220d-4acc-92c4-e261619d63cd",
164
+ "x-ms-pageable": {
165
+ "nextLinkName": "@odata.nextLink"
166
+ },
167
+ "x-ms-trigger": "batch",
168
+ "x-ms-trigger-hint": "To see it work now, add a member to the group.",
169
+ "x-ms-dev-triggerType": "DeltaLink",
170
+ "x-ms-dev-triggerValueCollection": "value[0].members@delta",
171
+ "x-ms-dev-triggerValuePath": "@odata.deltaLink",
172
+ "x-ms-dev-queryfilterParamName": "$deltatoken",
173
+ "externalDocs": {
174
+ "url": "https://docs.microsoft.com/connectors/office365groups/#when-a-group-member-is-added-or-removed"
175
+ }
176
+ }
177
+ },
178
+ "/{connectionId}/v1.0/groups/{groupId}/members/$ref": {
179
+ "post": {
180
+ "summary": "Add member to group",
181
+ "description": "This operation is used to add a member to an O365 group, using a UPN.",
182
+ "operationId": "AddMemberToGroup",
183
+ "parameters": [
184
+ {
185
+ "name": "connectionId",
186
+ "in": "path",
187
+ "required": true,
188
+ "type": "string",
189
+ "x-ms-visibility": "internal"
190
+ },
191
+ {
192
+ "$ref": "#/parameters/groupId__in_path"
193
+ },
194
+ {
195
+ "name": "userUpn",
196
+ "in": "query",
197
+ "description": "The user principal name (UPN) of the user.",
198
+ "required": true,
199
+ "x-ms-summary": "User Principal Name",
200
+ "type": "string"
201
+ }
202
+ ],
203
+ "responses": {
204
+ "204": {
205
+ "description": "Operation Successful"
206
+ }
207
+ },
208
+ "deprecated": false,
209
+ "x-ms-no-generic-test": true,
210
+ "x-ms-visibility": "important",
211
+ "externalDocs": {
212
+ "url": "https://docs.microsoft.com/connectors/office365groups/#add-member-to-group"
213
+ }
214
+ }
215
+ },
216
+ "/{connectionId}/v1.0/me/memberOf/$/microsoft.graph.group": {
217
+ "get": {
218
+ "summary": "List my owned groups",
219
+ "description": "This operation returns a list of all groups that you own.",
220
+ "operationId": "ListOwnedGroups",
221
+ "parameters": [
222
+ {
223
+ "name": "connectionId",
224
+ "in": "path",
225
+ "required": true,
226
+ "type": "string",
227
+ "x-ms-visibility": "internal"
228
+ }
229
+ ],
230
+ "responses": {
231
+ "200": {
232
+ "description": "Operation Successful",
233
+ "schema": {
234
+ "$ref": "#/definitions/ListOwnedGroups_Response"
235
+ }
236
+ }
237
+ },
238
+ "deprecated": false,
239
+ "x-ms-visibility": "advanced",
240
+ "externalDocs": {
241
+ "url": "https://docs.microsoft.com/connectors/office365groups/#list-my-owned-groups"
242
+ }
243
+ }
244
+ },
245
+ "/{connectionId}/v1.0/me/ownedObjects/$/microsoft.graph.group": {
246
+ "get": {
247
+ "summary": "List my owned groups (V2)",
248
+ "description": "This operation returns a list of all groups that you own.",
249
+ "operationId": "ListOwnedGroups_V2",
250
+ "parameters": [
251
+ {
252
+ "name": "connectionId",
253
+ "in": "path",
254
+ "required": true,
255
+ "type": "string",
256
+ "x-ms-visibility": "internal"
257
+ },
258
+ {
259
+ "$ref": "#/parameters/extractSensitivityLabel"
260
+ },
261
+ {
262
+ "$ref": "#/parameters/fetchSensitivityLabelMetadata"
263
+ }
264
+ ],
265
+ "responses": {
266
+ "200": {
267
+ "description": "Operation Successful",
268
+ "schema": {
269
+ "$ref": "#/definitions/ListOwnedGroups_V2_Response"
270
+ }
271
+ }
272
+ },
273
+ "deprecated": false,
274
+ "x-ms-visibility": "advanced",
275
+ "externalDocs": {
276
+ "url": "https://docs.microsoft.com/connectors/office365groups/#list-my-owned-groups-(v2)"
277
+ }
278
+ }
279
+ },
280
+ "/{connectionId}/v2/v1.0/me/memberOf/$/microsoft.graph.group": {
281
+ "get": {
282
+ "summary": "List groups that I own and belong to",
283
+ "description": "This operation returns a list of all groups that you own and belong to.",
284
+ "operationId": "ListOwnedGroups_V3",
285
+ "parameters": [
286
+ {
287
+ "name": "connectionId",
288
+ "in": "path",
289
+ "required": true,
290
+ "type": "string",
291
+ "x-ms-visibility": "internal"
292
+ },
293
+ {
294
+ "$ref": "#/parameters/extractSensitivityLabel"
295
+ },
296
+ {
297
+ "$ref": "#/parameters/fetchSensitivityLabelMetadata"
298
+ }
299
+ ],
300
+ "responses": {
301
+ "200": {
302
+ "description": "Operation Successful",
303
+ "schema": {
304
+ "$ref": "#/definitions/ListOwnedGroups_Response"
305
+ }
306
+ }
307
+ },
308
+ "deprecated": false,
309
+ "x-ms-visibility": "advanced",
310
+ "externalDocs": {
311
+ "url": "https://docs.microsoft.com/connectors/office365groups/#list-groups-that-i-own-and-belong-to"
312
+ }
313
+ }
314
+ },
315
+ "/{connectionId}/v1.0/groups": {
316
+ "get": {
317
+ "summary": "List groups",
318
+ "description": "This operation returns a list of all groups in the organization.",
319
+ "operationId": "ListGroups",
320
+ "parameters": [
321
+ {
322
+ "name": "connectionId",
323
+ "in": "path",
324
+ "required": true,
325
+ "type": "string",
326
+ "x-ms-visibility": "internal"
327
+ },
328
+ {
329
+ "$ref": "#/parameters/extractSensitivityLabel"
330
+ },
331
+ {
332
+ "$ref": "#/parameters/fetchSensitivityLabelMetadata"
333
+ },
334
+ {
335
+ "name": "$filter",
336
+ "in": "query",
337
+ "description": "Enter an OData style filter expression to limit which rows are listed.",
338
+ "required": false,
339
+ "x-ms-summary": "Filter rows",
340
+ "x-ms-visibility": "advanced",
341
+ "type": "string"
342
+ },
343
+ {
344
+ "name": "$top",
345
+ "in": "query",
346
+ "description": "Sets the page size of results.",
347
+ "required": false,
348
+ "x-ms-summary": "Page size",
349
+ "x-ms-visibility": "advanced",
350
+ "type": "integer"
351
+ },
352
+ {
353
+ "name": "$skiptoken",
354
+ "in": "query",
355
+ "required": false,
356
+ "type": "string",
357
+ "x-ms-summary": "Skip token",
358
+ "x-ms-visibility": "advanced",
359
+ "description": "Token that references the next page of results and is returned in the @odata.nextLink property in the response."
360
+ }
361
+ ],
362
+ "responses": {
363
+ "200": {
364
+ "description": "Operation Successful",
365
+ "schema": {
366
+ "$ref": "#/definitions/ListGroups_Response"
367
+ }
368
+ }
369
+ },
370
+ "deprecated": false,
371
+ "x-ms-visibility": "advanced",
372
+ "x-ms-pageable": {
373
+ "nextLinkName": "@odata.nextLink"
374
+ },
375
+ "externalDocs": {
376
+ "url": "https://docs.microsoft.com/connectors/office365groups/#list-groups"
377
+ }
378
+ }
379
+ },
380
+ "/{connectionId}/v1.0/groups/{groupId}/events": {
381
+ "post": {
382
+ "summary": "Create a group event",
383
+ "description": "This operation is used to create a new event in a group calendar.",
384
+ "operationId": "CreateCalendarEvent",
385
+ "parameters": [
386
+ {
387
+ "name": "connectionId",
388
+ "in": "path",
389
+ "required": true,
390
+ "type": "string",
391
+ "x-ms-visibility": "internal"
392
+ },
393
+ {
394
+ "$ref": "#/parameters/groupId__in_path"
395
+ },
396
+ {
397
+ "name": "body",
398
+ "in": "body",
399
+ "required": true,
400
+ "schema": {
401
+ "$ref": "#/definitions/UpdateCalendarEvent_Request"
402
+ }
403
+ }
404
+ ],
405
+ "responses": {
406
+ "201": {
407
+ "description": "Operation Successful",
408
+ "schema": {
409
+ "$ref": "#/definitions/CreateCalendarEvent_Response"
410
+ }
411
+ }
412
+ },
413
+ "deprecated": true,
414
+ "x-ms-no-generic-test": true,
415
+ "x-ms-api-annotation": {
416
+ "status": "Production",
417
+ "family": "CreateCalendarEvent",
418
+ "revision": 1
419
+ },
420
+ "externalDocs": {
421
+ "url": "https://docs.microsoft.com/connectors/office365groups/#create-a-group-event-%5bdeprecated%5d"
422
+ }
423
+ }
424
+ },
425
+ "/{connectionId}/v2/v1.0/groups/{groupId}/events": {
426
+ "post": {
427
+ "summary": "Create a group event (V2)",
428
+ "description": "This operation is used to create a new event in a group calendar.",
429
+ "operationId": "CreateCalendarEventV2",
430
+ "parameters": [
431
+ {
432
+ "name": "connectionId",
433
+ "in": "path",
434
+ "required": true,
435
+ "type": "string",
436
+ "x-ms-visibility": "internal"
437
+ },
438
+ {
439
+ "$ref": "#/parameters/groupId__in_path"
440
+ },
441
+ {
442
+ "name": "body",
443
+ "in": "body",
444
+ "required": true,
445
+ "schema": {
446
+ "$ref": "#/definitions/UpdateCalendarEvent_HTMLRequest"
447
+ }
448
+ }
449
+ ],
450
+ "responses": {
451
+ "201": {
452
+ "description": "Operation Successful",
453
+ "schema": {
454
+ "$ref": "#/definitions/CreateCalendarEvent_Response"
455
+ }
456
+ }
457
+ },
458
+ "deprecated": false,
459
+ "x-ms-no-generic-test": true,
460
+ "x-ms-api-annotation": {
461
+ "status": "Production",
462
+ "family": "CreateCalendarEvent",
463
+ "revision": 2
464
+ },
465
+ "externalDocs": {
466
+ "url": "https://docs.microsoft.com/connectors/office365groups/#create-a-group-event-(v2)"
467
+ }
468
+ }
469
+ },
470
+ "/{connectionId}/v1.0/groups/{groupId}/events/{event}": {
471
+ "delete": {
472
+ "summary": "Delete event (V2)",
473
+ "description": "This operation deletes an event in a calendar.",
474
+ "operationId": "CalendarDeleteItem_V2",
475
+ "parameters": [
476
+ {
477
+ "name": "connectionId",
478
+ "in": "path",
479
+ "required": true,
480
+ "type": "string",
481
+ "x-ms-visibility": "internal"
482
+ },
483
+ {
484
+ "$ref": "#/parameters/groupId__in_path"
485
+ },
486
+ {
487
+ "name": "event",
488
+ "in": "path",
489
+ "description": "Select an event",
490
+ "required": true,
491
+ "x-ms-summary": "Id",
492
+ "x-ms-url-encoding": "double",
493
+ "type": "string"
494
+ }
495
+ ],
496
+ "responses": {
497
+ "204": {
498
+ "description": "OK"
499
+ },
500
+ "default": {
501
+ "description": "Operation Failed."
502
+ }
503
+ },
504
+ "deprecated": false,
505
+ "x-ms-no-generic-test": true,
506
+ "x-ms-visibility": "important",
507
+ "externalDocs": {
508
+ "url": "https://docs.microsoft.com/connectors/office365groups/#delete-event-(v2)"
509
+ }
510
+ },
511
+ "patch": {
512
+ "summary": "Update a group event",
513
+ "description": "This operation is used to update a new event in a group calendar.",
514
+ "operationId": "UpdateCalendarEvent",
515
+ "parameters": [
516
+ {
517
+ "name": "connectionId",
518
+ "in": "path",
519
+ "required": true,
520
+ "type": "string",
521
+ "x-ms-visibility": "internal"
522
+ },
523
+ {
524
+ "$ref": "#/parameters/groupId__in_path"
525
+ },
526
+ {
527
+ "name": "event",
528
+ "in": "path",
529
+ "description": "Select an event",
530
+ "required": true,
531
+ "x-ms-summary": "Id",
532
+ "x-ms-url-encoding": "double",
533
+ "type": "string"
534
+ },
535
+ {
536
+ "name": "body",
537
+ "in": "body",
538
+ "required": true,
539
+ "schema": {
540
+ "$ref": "#/definitions/UpdateCalendarEvent_HTMLRequest"
541
+ }
542
+ }
543
+ ],
544
+ "responses": {
545
+ "200": {
546
+ "description": "Operation Successful",
547
+ "schema": {
548
+ "$ref": "#/definitions/CreateCalendarEvent_Response"
549
+ }
550
+ }
551
+ },
552
+ "deprecated": false,
553
+ "x-ms-no-generic-test": true,
554
+ "x-ms-visibility": "important",
555
+ "externalDocs": {
556
+ "url": "https://docs.microsoft.com/connectors/office365groups/#update-a-group-event"
557
+ }
558
+ }
559
+ },
560
+ "/{connectionId}/v1.0/groups/{groupId}/members/memberId/$ref": {
561
+ "delete": {
562
+ "summary": "Remove member from group",
563
+ "description": "This operation is used to remove a member from an O365 group, using a UPN.",
564
+ "operationId": "RemoveMemberFromGroup",
565
+ "parameters": [
566
+ {
567
+ "name": "connectionId",
568
+ "in": "path",
569
+ "required": true,
570
+ "type": "string",
571
+ "x-ms-visibility": "internal"
572
+ },
573
+ {
574
+ "$ref": "#/parameters/groupId__in_path"
575
+ },
576
+ {
577
+ "name": "userUpn",
578
+ "in": "query",
579
+ "description": "The user principal name (UPN) of the user",
580
+ "required": true,
581
+ "x-ms-summary": "User Principal Name",
582
+ "type": "string"
583
+ }
584
+ ],
585
+ "responses": {
586
+ "204": {
587
+ "description": "Operation Successful"
588
+ }
589
+ },
590
+ "deprecated": false,
591
+ "x-ms-no-generic-test": true,
592
+ "x-ms-visibility": "important",
593
+ "externalDocs": {
594
+ "url": "https://docs.microsoft.com/connectors/office365groups/#remove-member-from-group"
595
+ }
596
+ }
597
+ },
598
+ "/{connectionId}/trigger/v1.0/groups/{groupId}/events": {
599
+ "get": {
600
+ "summary": "When there is a new event",
601
+ "description": "This operation triggers when a new event is added to a group calendar.",
602
+ "operationId": "OnNewEvent",
603
+ "parameters": [
604
+ {
605
+ "name": "connectionId",
606
+ "in": "path",
607
+ "required": true,
608
+ "type": "string",
609
+ "x-ms-visibility": "internal"
610
+ },
611
+ {
612
+ "$ref": "#/parameters/groupId__in_path"
613
+ }
614
+ ],
615
+ "responses": {
616
+ "200": {
617
+ "description": "Operation Successful",
618
+ "schema": {
619
+ "$ref": "#/definitions/OnNewEvent_Response"
620
+ }
621
+ }
622
+ },
623
+ "deprecated": false,
624
+ "x-ms-visibility": "important",
625
+ "x-ms-trigger": "batch",
626
+ "x-ms-trigger-hint": "To see it work now, create an event in Office 365 Groups.",
627
+ "x-ms-dev-triggerType": "QueryFilter",
628
+ "x-ms-dev-triggerDateFormat": "iso",
629
+ "x-ms-dev-triggerValueCollection": "value",
630
+ "x-ms-dev-triggerValuePath": "createdDateTime",
631
+ "x-ms-dev-queryfilterParamName": "$filter",
632
+ "externalDocs": {
633
+ "url": "https://docs.microsoft.com/connectors/office365groups/#when-there-is-a-new-event"
634
+ }
635
+ }
636
+ },
637
+ "/{connectionId}/v2/httprequest": {
638
+ "post": {
639
+ "summary": "Send an HTTP request V2",
640
+ "description": "Construct a Microsoft Graph REST API request to invoke. There is one segment that is supported: /groups. Learn more: https://docs.microsoft.com/en-us/graph/use-the-api.",
641
+ "operationId": "HttpRequestV2",
642
+ "consumes": [],
643
+ "produces": [],
644
+ "parameters": [
645
+ {
646
+ "name": "connectionId",
647
+ "in": "path",
648
+ "required": true,
649
+ "type": "string",
650
+ "x-ms-visibility": "internal"
651
+ },
652
+ {
653
+ "name": "Uri",
654
+ "in": "header",
655
+ "description": "The full or relative URI. Example: https://graph.microsoft.com/{version}/{resource}.",
656
+ "required": true,
657
+ "x-ms-summary": "URI",
658
+ "type": "string"
659
+ },
660
+ {
661
+ "name": "Method",
662
+ "in": "header",
663
+ "description": "The HTTP method (default is GET).",
664
+ "default": "GET",
665
+ "enum": [
666
+ "GET",
667
+ "POST",
668
+ "PUT",
669
+ "PATCH",
670
+ "DELETE"
671
+ ],
672
+ "required": true,
673
+ "x-ms-summary": "Method",
674
+ "type": "string"
675
+ },
676
+ {
677
+ "name": "Body",
678
+ "in": "body",
679
+ "description": "The request body content.",
680
+ "required": false,
681
+ "schema": {
682
+ "format": "binary",
683
+ "type": "string"
684
+ },
685
+ "x-ms-summary": "Body"
686
+ },
687
+ {
688
+ "name": "ContentType",
689
+ "in": "header",
690
+ "description": "The content-type header for the body (default is application/json).",
691
+ "required": false,
692
+ "x-ms-summary": "Content-Type",
693
+ "type": "string",
694
+ "default": "application/json"
695
+ },
696
+ {
697
+ "name": "CustomHeader1",
698
+ "in": "header",
699
+ "description": "Custom header 1. Specify in format: header-name: header-value",
700
+ "required": false,
701
+ "x-ms-summary": "CustomHeader1",
702
+ "type": "string",
703
+ "x-ms-visibility": "advanced"
704
+ },
705
+ {
706
+ "name": "CustomHeader2",
707
+ "in": "header",
708
+ "description": "Custom header 2. Specify in format: header-name: header-value",
709
+ "required": false,
710
+ "x-ms-summary": "CustomHeader2",
711
+ "type": "string",
712
+ "x-ms-visibility": "advanced"
713
+ },
714
+ {
715
+ "name": "CustomHeader3",
716
+ "in": "header",
717
+ "description": "Custom header 3. Specify in format: header-name: header-value",
718
+ "required": false,
719
+ "x-ms-summary": "CustomHeader3",
720
+ "type": "string",
721
+ "x-ms-visibility": "advanced"
722
+ },
723
+ {
724
+ "name": "CustomHeader4",
725
+ "in": "header",
726
+ "description": "Custom header 4. Specify in format: header-name: header-value",
727
+ "required": false,
728
+ "x-ms-summary": "CustomHeader4",
729
+ "type": "string",
730
+ "x-ms-visibility": "advanced"
731
+ },
732
+ {
733
+ "name": "CustomHeader5",
734
+ "in": "header",
735
+ "description": "Custom header 5. Specify in format: header-name: header-value",
736
+ "required": false,
737
+ "x-ms-summary": "CustomHeader5",
738
+ "type": "string",
739
+ "x-ms-visibility": "advanced"
740
+ }
741
+ ],
742
+ "responses": {
743
+ "200": {
744
+ "description": "OK",
745
+ "schema": {
746
+ "$ref": "#/definitions/ObjectWithoutType"
747
+ }
748
+ },
749
+ "default": {
750
+ "description": "Operation Failed."
751
+ }
752
+ },
753
+ "deprecated": false,
754
+ "x-ms-visibility": "important",
755
+ "x-ms-api-annotation": {
756
+ "status": "Production",
757
+ "family": "HttpRequest",
758
+ "revision": 2
759
+ },
760
+ "externalDocs": {
761
+ "url": "https://docs.microsoft.com/connectors/office365groups/#send-an-http-request-v2"
762
+ }
763
+ }
764
+ },
765
+ "/{connectionId}/httprequest": {
766
+ "post": {
767
+ "summary": "Send an HTTP request",
768
+ "description": "Construct a Microsoft Graph REST API request to invoke. Learn more: https://docs.microsoft.com/en-us/graph/use-the-api",
769
+ "operationId": "HttpRequest",
770
+ "consumes": [],
771
+ "produces": [],
772
+ "parameters": [
773
+ {
774
+ "name": "connectionId",
775
+ "in": "path",
776
+ "required": true,
777
+ "type": "string",
778
+ "x-ms-visibility": "internal"
779
+ },
780
+ {
781
+ "name": "Uri",
782
+ "in": "header",
783
+ "description": "The full or relative URI. Example: https://graph.microsoft.com/{version}/{resource}.",
784
+ "required": true,
785
+ "x-ms-summary": "URI",
786
+ "type": "string"
787
+ },
788
+ {
789
+ "name": "Method",
790
+ "in": "header",
791
+ "description": "The HTTP method (default is GET).",
792
+ "default": "GET",
793
+ "enum": [
794
+ "GET",
795
+ "POST",
796
+ "PUT",
797
+ "PATCH",
798
+ "DELETE"
799
+ ],
800
+ "required": true,
801
+ "x-ms-summary": "Method",
802
+ "type": "string"
803
+ },
804
+ {
805
+ "name": "Body",
806
+ "in": "body",
807
+ "description": "The request body content.",
808
+ "required": false,
809
+ "schema": {
810
+ "format": "binary",
811
+ "type": "string"
812
+ },
813
+ "x-ms-summary": "Body"
814
+ },
815
+ {
816
+ "name": "ContentType",
817
+ "in": "header",
818
+ "description": "The content-type header for the body (default is application/json).",
819
+ "required": false,
820
+ "x-ms-summary": "Content-Type",
821
+ "type": "string",
822
+ "default": "application/json"
823
+ },
824
+ {
825
+ "name": "CustomHeader1",
826
+ "in": "header",
827
+ "description": "Custom header 1. Specify in format: header-name: header-value",
828
+ "required": false,
829
+ "x-ms-summary": "CustomHeader1",
830
+ "type": "string",
831
+ "x-ms-visibility": "advanced"
832
+ },
833
+ {
834
+ "name": "CustomHeader2",
835
+ "in": "header",
836
+ "description": "Custom header 2. Specify in format: header-name: header-value",
837
+ "required": false,
838
+ "x-ms-summary": "CustomHeader2",
839
+ "type": "string",
840
+ "x-ms-visibility": "advanced"
841
+ },
842
+ {
843
+ "name": "CustomHeader3",
844
+ "in": "header",
845
+ "description": "Custom header 3. Specify in format: header-name: header-value",
846
+ "required": false,
847
+ "x-ms-summary": "CustomHeader3",
848
+ "type": "string",
849
+ "x-ms-visibility": "advanced"
850
+ },
851
+ {
852
+ "name": "CustomHeader4",
853
+ "in": "header",
854
+ "description": "Custom header 4. Specify in format: header-name: header-value",
855
+ "required": false,
856
+ "x-ms-summary": "CustomHeader4",
857
+ "type": "string",
858
+ "x-ms-visibility": "advanced"
859
+ },
860
+ {
861
+ "name": "CustomHeader5",
862
+ "in": "header",
863
+ "description": "Custom header 5. Specify in format: header-name: header-value",
864
+ "required": false,
865
+ "x-ms-summary": "CustomHeader5",
866
+ "type": "string",
867
+ "x-ms-visibility": "advanced"
868
+ }
869
+ ],
870
+ "responses": {
871
+ "200": {
872
+ "description": "OK",
873
+ "schema": {
874
+ "$ref": "#/definitions/ObjectWithoutType"
875
+ }
876
+ },
877
+ "default": {
878
+ "description": "Operation Failed."
879
+ }
880
+ },
881
+ "deprecated": true,
882
+ "x-ms-visibility": "important",
883
+ "x-ms-api-annotation": {
884
+ "status": "Production",
885
+ "family": "HttpRequest",
886
+ "revision": 1
887
+ },
888
+ "externalDocs": {
889
+ "url": "https://docs.microsoft.com/connectors/office365groups/#send-an-http-request-%5bdeprecated%5d"
890
+ }
891
+ }
892
+ },
893
+ "/{connectionId}/v1.0/directory/deletedItems/microsoft.graph.group": {
894
+ "get": {
895
+ "summary": "List deleted groups",
896
+ "description": "Lists deleted groups that can be restored.",
897
+ "operationId": "ListDeletedGroups",
898
+ "responses": {
899
+ "200": {
900
+ "description": "Operation successful",
901
+ "schema": {
902
+ "$ref": "#/definitions/ListGroups_Response"
903
+ }
904
+ }
905
+ },
906
+ "deprecated": false,
907
+ "x-ms-no-generic-test": true,
908
+ "x-ms-visibility": "advanced",
909
+ "externalDocs": {
910
+ "url": "https://docs.microsoft.com/connectors/office365groups/#list-deleted-groups"
911
+ },
912
+ "parameters": [
913
+ {
914
+ "name": "connectionId",
915
+ "in": "path",
916
+ "required": true,
917
+ "type": "string",
918
+ "x-ms-visibility": "internal"
919
+ }
920
+ ]
921
+ }
922
+ },
923
+ "/{connectionId}/v1.0/directory/deletedItems/{groupId}/restore": {
924
+ "post": {
925
+ "summary": "Restore a deleted group",
926
+ "description": "Restore a recently deleted group",
927
+ "operationId": "RestoreDeletedGroup",
928
+ "parameters": [
929
+ {
930
+ "name": "connectionId",
931
+ "in": "path",
932
+ "required": true,
933
+ "type": "string",
934
+ "x-ms-visibility": "internal"
935
+ },
936
+ {
937
+ "$ref": "#/parameters/deletedGroupId__in_path"
938
+ }
939
+ ],
940
+ "responses": {
941
+ "200": {
942
+ "description": "Operation successful"
943
+ }
944
+ },
945
+ "deprecated": false,
946
+ "x-ms-no-generic-test": true,
947
+ "x-ms-visibility": "advanced",
948
+ "externalDocs": {
949
+ "url": "https://docs.microsoft.com/connectors/office365groups/#restore-a-deleted-group"
950
+ }
951
+ }
952
+ },
953
+ "/{connectionId}/v1.0/directory/deletedItems/getUserOwnedObjects": {
954
+ "post": {
955
+ "summary": "List deleted groups by owner",
956
+ "description": "List deleted groups that can be restored by owner",
957
+ "operationId": "ListDeletedGroupsByOwner",
958
+ "parameters": [
959
+ {
960
+ "name": "connectionId",
961
+ "in": "path",
962
+ "required": true,
963
+ "type": "string",
964
+ "x-ms-visibility": "internal"
965
+ },
966
+ {
967
+ "name": "userId",
968
+ "in": "header",
969
+ "description": "Enter a user id.",
970
+ "required": true,
971
+ "x-ms-summary": "User Id",
972
+ "x-ms-visibility": "important",
973
+ "type": "string",
974
+ "format": "guid"
975
+ }
976
+ ],
977
+ "responses": {
978
+ "200": {
979
+ "description": "Operation successful",
980
+ "schema": {
981
+ "$ref": "#/definitions/ListGroups_Response"
982
+ }
983
+ }
984
+ },
985
+ "deprecated": false,
986
+ "x-ms-no-generic-test": true,
987
+ "x-ms-visibility": "advanced",
988
+ "externalDocs": {
989
+ "url": "https://docs.microsoft.com/connectors/office365groups/#list-deleted-groups-by-owner"
990
+ }
991
+ }
992
+ }
993
+ },
994
+ "definitions": {
995
+ "SensitivityLabelMetadata": {
996
+ "type": "object",
997
+ "properties": {
998
+ "sensitivityLabelId": {
999
+ "type": "string",
1000
+ "description": "SensitivityLabel Id.",
1001
+ "x-ms-summary": "SensitivityLabel Id",
1002
+ "title": "sensitivityLabelId"
1003
+ },
1004
+ "name": {
1005
+ "type": "string",
1006
+ "description": "SensitivityLabel name.",
1007
+ "x-ms-summary": "name",
1008
+ "title": "name"
1009
+ },
1010
+ "displayName": {
1011
+ "type": "string",
1012
+ "description": "SensitivityLabel displayName info",
1013
+ "x-ms-summary": "SensitivityLabel displayName info",
1014
+ "title": "displayName"
1015
+ },
1016
+ "tooltip": {
1017
+ "type": "string",
1018
+ "description": "SensitivityLabel details on tooltip.",
1019
+ "x-ms-summary": "tooltip info",
1020
+ "title": "tooltip"
1021
+ },
1022
+ "priority": {
1023
+ "type": "integer",
1024
+ "format": "int32",
1025
+ "description": "SensitivityLabel priority.",
1026
+ "x-ms-summary": "priority of SensitivityLabel",
1027
+ "title": "priority"
1028
+ },
1029
+ "color": {
1030
+ "type": "string",
1031
+ "description": "SensitivityLabel color.",
1032
+ "x-ms-summary": "color to be displayed for SensitivityLabel.",
1033
+ "title": "color"
1034
+ },
1035
+ "isEncrypted": {
1036
+ "type": "boolean",
1037
+ "description": " is SensitivityLabel Encrypted.",
1038
+ "x-ms-summary": "isEncrypted status of SensitivityLabel",
1039
+ "title": "isEncrypted"
1040
+ },
1041
+ "isEnabled": {
1042
+ "type": "boolean",
1043
+ "description": "Whether SensitivityLabel is Enabled.",
1044
+ "x-ms-summary": "Whether SensitivityLabel is Enabled.",
1045
+ "title": "isEnabled"
1046
+ },
1047
+ "isParent": {
1048
+ "type": "boolean",
1049
+ "description": "Whether SensitivityLabel is Parent.",
1050
+ "x-ms-summary": "Whether SensitivityLabel is Parent",
1051
+ "title": "isParent"
1052
+ },
1053
+ "parentSensitivityLabelId": {
1054
+ "type": "string",
1055
+ "description": "Parent SensitivityLabel Id.",
1056
+ "x-ms-summary": "Parent SensitivityLabel Id",
1057
+ "title": "parentSensitivityLabelId"
1058
+ }
1059
+ }
1060
+ },
1061
+ "ListGroupMembers_Response": {
1062
+ "type": "object",
1063
+ "properties": {
1064
+ "@odata.context": {
1065
+ "type": "string",
1066
+ "description": "The OData context.",
1067
+ "title": "OData context",
1068
+ "x-ms-visibility": "internal"
1069
+ },
1070
+ "@odata.nextLink": {
1071
+ "type": "string",
1072
+ "description": "Only used in Power Apps Canvas to genereate the `$skipToken` for pagination. Power Automate and Logic Apps must use the pagination setting.",
1073
+ "title": "OData NextLink",
1074
+ "x-ms-visibility": "advanced"
1075
+ },
1076
+ "value": {
1077
+ "description": "value",
1078
+ "type": "array",
1079
+ "items": {
1080
+ "type": "object",
1081
+ "properties": {
1082
+ "id": {
1083
+ "description": "Unique id of the user.",
1084
+ "type": "string",
1085
+ "x-ms-visibility": "advanced",
1086
+ "x-ms-summary": "User Id"
1087
+ },
1088
+ "displayName": {
1089
+ "description": "User's display name.",
1090
+ "type": "string",
1091
+ "x-ms-summary": "Display Name"
1092
+ },
1093
+ "givenName": {
1094
+ "description": "User's first name.",
1095
+ "type": "string",
1096
+ "x-ms-summary": "Given Name"
1097
+ },
1098
+ "jobTitle": {
1099
+ "description": "User's job title.",
1100
+ "type": "string",
1101
+ "x-ms-summary": "Job Title"
1102
+ },
1103
+ "mail": {
1104
+ "description": "User's email address.",
1105
+ "type": "string",
1106
+ "x-ms-summary": "Mail"
1107
+ },
1108
+ "mobilePhone": {
1109
+ "description": "User's mobile number.",
1110
+ "type": "string",
1111
+ "x-ms-visibility": "advanced",
1112
+ "x-ms-summary": "Mobile Phone"
1113
+ },
1114
+ "officeLocation": {
1115
+ "description": "User's office address.",
1116
+ "type": "string",
1117
+ "x-ms-visibility": "advanced",
1118
+ "x-ms-summary": "Office Location"
1119
+ },
1120
+ "surname": {
1121
+ "description": "User's last name.",
1122
+ "type": "string",
1123
+ "x-ms-summary": "Surname"
1124
+ },
1125
+ "userPrincipalName": {
1126
+ "description": "UPN id of the user.",
1127
+ "type": "string",
1128
+ "x-ms-visibility": "advanced",
1129
+ "x-ms-summary": "User Principal Name"
1130
+ }
1131
+ }
1132
+ }
1133
+ }
1134
+ }
1135
+ },
1136
+ "OnGroupMemberAddedOrRemoved_Response": {
1137
+ "description": "value",
1138
+ "type": "array",
1139
+ "items": {
1140
+ "type": "object",
1141
+ "properties": {
1142
+ "id": {
1143
+ "description": "Unique id of the user.",
1144
+ "type": "string",
1145
+ "x-ms-visibility": "advanced",
1146
+ "x-ms-summary": "User Id"
1147
+ },
1148
+ "@removed": {
1149
+ "type": "object",
1150
+ "properties": {
1151
+ "reason": {
1152
+ "description": "Reason that caused the user to be removed from the group.",
1153
+ "type": "string",
1154
+ "x-ms-summary": "Reason"
1155
+ }
1156
+ }
1157
+ }
1158
+ }
1159
+ }
1160
+ },
1161
+ "ListOwnedGroups_Response": {
1162
+ "type": "object",
1163
+ "properties": {
1164
+ "@odata.context": {
1165
+ "description": "The OData context.",
1166
+ "type": "string",
1167
+ "x-ms-summary": "OData context",
1168
+ "x-ms-visibility": "internal"
1169
+ },
1170
+ "value": {
1171
+ "description": "value",
1172
+ "type": "array",
1173
+ "items": {
1174
+ "type": "object",
1175
+ "properties": {
1176
+ "classification": {
1177
+ "description": "O365 group classification.",
1178
+ "type": "string",
1179
+ "x-ms-summary": "Classification",
1180
+ "x-ms-visibility": "advanced"
1181
+ },
1182
+ "createdDateTime": {
1183
+ "format": "date-time",
1184
+ "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1185
+ "type": "string",
1186
+ "x-ms-summary": "Created Date-Time",
1187
+ "x-ms-visibility": "advanced"
1188
+ },
1189
+ "deletedDateTime": {
1190
+ "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1191
+ "type": "string",
1192
+ "x-ms-summary": "Deleted Date-Time",
1193
+ "x-ms-visibility": "advanced"
1194
+ },
1195
+ "description": {
1196
+ "description": "More information about the group.",
1197
+ "type": "string",
1198
+ "x-ms-summary": "Description"
1199
+ },
1200
+ "displayName": {
1201
+ "description": "O365 group name.",
1202
+ "type": "string",
1203
+ "x-ms-summary": "Name"
1204
+ },
1205
+ "id": {
1206
+ "description": "Unique identifier of the group.",
1207
+ "type": "string",
1208
+ "x-ms-summary": "Group Id",
1209
+ "x-ms-visibility": "advanced"
1210
+ },
1211
+ "mail": {
1212
+ "description": "Email address of the group.",
1213
+ "type": "string",
1214
+ "x-ms-summary": "Email"
1215
+ },
1216
+ "mailEnabled": {
1217
+ "description": "True if mail is enabled for the group.",
1218
+ "type": "boolean",
1219
+ "x-ms-summary": "Mail Enabled",
1220
+ "x-ms-visibility": "advanced"
1221
+ },
1222
+ "mailNickname": {
1223
+ "description": "Group nickname.",
1224
+ "type": "string",
1225
+ "x-ms-summary": "Nickname",
1226
+ "x-ms-visibility": "advanced"
1227
+ },
1228
+ "onPremisesLastSyncDateTime": {
1229
+ "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1230
+ "type": "string",
1231
+ "x-ms-summary": "On-Premises Last Sync Date-Time",
1232
+ "x-ms-visibility": "advanced"
1233
+ },
1234
+ "onPremisesSecurityIdentifier": {
1235
+ "description": "The on-premises security identifier.",
1236
+ "type": "string",
1237
+ "x-ms-summary": "On-Premises Security Identifier",
1238
+ "x-ms-visibility": "advanced"
1239
+ },
1240
+ "onPremisesSyncEnabled": {
1241
+ "description": "True if on-premises sync is enabled for the group.",
1242
+ "type": "string",
1243
+ "x-ms-summary": "On-Premises Sync Enabled",
1244
+ "x-ms-visibility": "advanced"
1245
+ },
1246
+ "renewedDateTime": {
1247
+ "format": "date-time",
1248
+ "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1249
+ "type": "string",
1250
+ "x-ms-summary": "Renewed Date-Time",
1251
+ "x-ms-visibility": "advanced"
1252
+ },
1253
+ "securityEnabled": {
1254
+ "description": "True if the owner is security enabled.",
1255
+ "type": "boolean",
1256
+ "x-ms-summary": "Security Enabled",
1257
+ "x-ms-visibility": "advanced"
1258
+ },
1259
+ "visibility": {
1260
+ "description": "The owner's visibility.",
1261
+ "type": "string",
1262
+ "x-ms-summary": "Visibility",
1263
+ "x-ms-visibility": "advanced"
1264
+ },
1265
+ "sensitivityLabelInfo": {
1266
+ "description": "List of Sensitivity Label Information",
1267
+ "type": "array",
1268
+ "items": {
1269
+ "$ref": "#/definitions/SensitivityLabelMetadata"
1270
+ }
1271
+ }
1272
+ }
1273
+ }
1274
+ }
1275
+ }
1276
+ },
1277
+ "ListOwnedGroups_V2_Response": {
1278
+ "type": "object",
1279
+ "properties": {
1280
+ "@odata.context": {
1281
+ "description": "The OData context.",
1282
+ "type": "string",
1283
+ "x-ms-summary": "OData context",
1284
+ "x-ms-visibility": "internal"
1285
+ },
1286
+ "value": {
1287
+ "description": "value",
1288
+ "type": "array",
1289
+ "items": {
1290
+ "type": "object",
1291
+ "properties": {
1292
+ "classification": {
1293
+ "description": "O365 group classification.",
1294
+ "type": "string",
1295
+ "x-ms-summary": "Classification",
1296
+ "x-ms-visibility": "advanced"
1297
+ },
1298
+ "createdDateTime": {
1299
+ "format": "date-time",
1300
+ "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1301
+ "type": "string",
1302
+ "x-ms-summary": "Created Date-Time",
1303
+ "x-ms-visibility": "advanced"
1304
+ },
1305
+ "description": {
1306
+ "description": "More information about the group.",
1307
+ "type": "string",
1308
+ "x-ms-summary": "Description"
1309
+ },
1310
+ "displayName": {
1311
+ "description": "O365 group name.",
1312
+ "type": "string",
1313
+ "x-ms-summary": "Name"
1314
+ },
1315
+ "id": {
1316
+ "description": "Unique identifier of the group.",
1317
+ "type": "string",
1318
+ "x-ms-summary": "Group Id",
1319
+ "x-ms-visibility": "advanced"
1320
+ },
1321
+ "mail": {
1322
+ "description": "Email address of the group.",
1323
+ "type": "string",
1324
+ "x-ms-summary": "Email"
1325
+ },
1326
+ "mailEnabled": {
1327
+ "description": "True if mail is enabled for the group.",
1328
+ "type": "boolean",
1329
+ "x-ms-summary": "Mail Enabled",
1330
+ "x-ms-visibility": "advanced"
1331
+ },
1332
+ "mailNickname": {
1333
+ "description": "Group nickname.",
1334
+ "type": "string",
1335
+ "x-ms-summary": "Nickname",
1336
+ "x-ms-visibility": "advanced"
1337
+ },
1338
+ "onPremisesLastSyncDateTime": {
1339
+ "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1340
+ "type": "string",
1341
+ "x-ms-summary": "On-Premises Last Sync Date-Time",
1342
+ "x-ms-visibility": "advanced"
1343
+ },
1344
+ "onPremisesSecurityIdentifier": {
1345
+ "description": "The on-premises security identifier.",
1346
+ "type": "string",
1347
+ "x-ms-summary": "On-Premises Security Identifier",
1348
+ "x-ms-visibility": "advanced"
1349
+ },
1350
+ "onPremisesSyncEnabled": {
1351
+ "description": "True if on-premises sync is enabled for the group.",
1352
+ "type": "string",
1353
+ "x-ms-summary": "On-Premises Sync Enabled",
1354
+ "x-ms-visibility": "advanced"
1355
+ },
1356
+ "renewedDateTime": {
1357
+ "format": "date-time",
1358
+ "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1359
+ "type": "string",
1360
+ "x-ms-summary": "Renewed Date-Time",
1361
+ "x-ms-visibility": "advanced"
1362
+ },
1363
+ "securityEnabled": {
1364
+ "description": "True if the owner is security enabled.",
1365
+ "type": "boolean",
1366
+ "x-ms-summary": "Security Enabled",
1367
+ "x-ms-visibility": "advanced"
1368
+ },
1369
+ "visibility": {
1370
+ "description": "The owner's visibility.",
1371
+ "type": "string",
1372
+ "x-ms-summary": "Visibility",
1373
+ "x-ms-visibility": "advanced"
1374
+ },
1375
+ "sensitivityLabelInfo": {
1376
+ "description": "List of Sensitivity Label Information",
1377
+ "type": "array",
1378
+ "items": {
1379
+ "$ref": "#/definitions/SensitivityLabelMetadata"
1380
+ }
1381
+ }
1382
+ }
1383
+ }
1384
+ }
1385
+ }
1386
+ },
1387
+ "ListGroups_Response": {
1388
+ "type": "object",
1389
+ "properties": {
1390
+ "@odata.context": {
1391
+ "type": "string",
1392
+ "description": "The OData context.",
1393
+ "title": "OData context",
1394
+ "x-ms-visibility": "internal"
1395
+ },
1396
+ "@odata.nextLink": {
1397
+ "type": "string",
1398
+ "description": "Only used in Power Apps Canvas to genereate the `$skipToken` for pagination. Power Automate and Logic Apps must use the pagination setting.",
1399
+ "title": "OData NextLink",
1400
+ "x-ms-visibility": "advanced"
1401
+ },
1402
+ "value": {
1403
+ "description": "value",
1404
+ "type": "array",
1405
+ "items": {
1406
+ "type": "object",
1407
+ "properties": {
1408
+ "classification": {
1409
+ "description": "O365 group classification.",
1410
+ "type": "string",
1411
+ "x-ms-summary": "Classification",
1412
+ "x-ms-visibility": "advanced"
1413
+ },
1414
+ "createdDateTime": {
1415
+ "format": "date-time",
1416
+ "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1417
+ "type": "string",
1418
+ "x-ms-summary": "Created Date-Time",
1419
+ "x-ms-visibility": "advanced"
1420
+ },
1421
+ "description": {
1422
+ "description": "More information about the group.",
1423
+ "type": "string",
1424
+ "x-ms-summary": "Description"
1425
+ },
1426
+ "displayName": {
1427
+ "description": "O365 group name.",
1428
+ "type": "string",
1429
+ "x-ms-summary": "Name"
1430
+ },
1431
+ "id": {
1432
+ "description": "Unique identifier of the group.",
1433
+ "type": "string",
1434
+ "x-ms-summary": "Group Id",
1435
+ "x-ms-visibility": "advanced"
1436
+ },
1437
+ "mail": {
1438
+ "description": "Email address of the group.",
1439
+ "type": "string",
1440
+ "x-ms-summary": "Email"
1441
+ },
1442
+ "mailEnabled": {
1443
+ "description": "True if mail is enabled for the group.",
1444
+ "type": "boolean",
1445
+ "x-ms-summary": "Mail Enabled",
1446
+ "x-ms-visibility": "advanced"
1447
+ },
1448
+ "mailNickname": {
1449
+ "description": "Group nickname.",
1450
+ "type": "string",
1451
+ "x-ms-summary": "Nickname",
1452
+ "x-ms-visibility": "advanced"
1453
+ },
1454
+ "onPremisesLastSyncDateTime": {
1455
+ "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1456
+ "type": "string",
1457
+ "x-ms-summary": "On-Premises Last Sync Date-Time",
1458
+ "x-ms-visibility": "advanced"
1459
+ },
1460
+ "onPremisesSecurityIdentifier": {
1461
+ "description": "The on-premises security identifier.",
1462
+ "type": "string",
1463
+ "x-ms-summary": "On-Premises Security Identifier",
1464
+ "x-ms-visibility": "advanced"
1465
+ },
1466
+ "onPremisesSyncEnabled": {
1467
+ "description": "True if on-premises sync is enabled for the group.",
1468
+ "type": "boolean",
1469
+ "x-ms-summary": "On-Premises Sync Enabled",
1470
+ "x-ms-visibility": "advanced"
1471
+ },
1472
+ "renewedDateTime": {
1473
+ "format": "date-time",
1474
+ "description": "yyyy-MM-ddTHH:mm:ss.fffZ (ISO8601 format, UTC timezone)",
1475
+ "type": "string",
1476
+ "x-ms-summary": "Renewed Date-Time",
1477
+ "x-ms-visibility": "advanced"
1478
+ },
1479
+ "securityEnabled": {
1480
+ "description": "True if the owner is security enabled.",
1481
+ "type": "boolean",
1482
+ "x-ms-summary": "Security Enabled",
1483
+ "x-ms-visibility": "advanced"
1484
+ },
1485
+ "visibility": {
1486
+ "description": "The owner's visibility.",
1487
+ "type": "string",
1488
+ "x-ms-summary": "Visibility",
1489
+ "x-ms-visibility": "advanced"
1490
+ },
1491
+ "sensitivityLabelInfo": {
1492
+ "description": "List of Sensitivity Label Information",
1493
+ "type": "array",
1494
+ "items": {
1495
+ "$ref": "#/definitions/SensitivityLabelMetadata"
1496
+ }
1497
+ }
1498
+ }
1499
+ }
1500
+ }
1501
+ }
1502
+ },
1503
+ "CreateCalendarEvent_Response": {
1504
+ "type": "object",
1505
+ "properties": {
1506
+ "id": {
1507
+ "description": "Unique id of the event.",
1508
+ "type": "string",
1509
+ "x-ms-visibility": "advanced",
1510
+ "x-ms-summary": "Id"
1511
+ },
1512
+ "reminderMinutesBeforeStart": {
1513
+ "format": "int32",
1514
+ "description": "Time in minutes before event starts to remind.",
1515
+ "type": "integer",
1516
+ "x-ms-visibility": "advanced",
1517
+ "x-ms-summary": "Reminder Start Duration"
1518
+ },
1519
+ "isReminderOn": {
1520
+ "description": "Set to true if the event has a reminder.",
1521
+ "type": "boolean",
1522
+ "x-ms-visibility": "advanced",
1523
+ "x-ms-summary": "Is Reminder On"
1524
+ },
1525
+ "subject": {
1526
+ "description": "Title of the event.",
1527
+ "type": "string",
1528
+ "x-ms-summary": "Subject"
1529
+ },
1530
+ "importance": {
1531
+ "description": "The importance of the event: Low, Normal, or High.",
1532
+ "type": "string",
1533
+ "x-ms-summary": "Importance"
1534
+ },
1535
+ "isAllDay": {
1536
+ "description": "True if the event is an all day event.",
1537
+ "type": "boolean",
1538
+ "x-ms-visibility": "advanced",
1539
+ "x-ms-summary": "Is All Day"
1540
+ },
1541
+ "responseRequested": {
1542
+ "description": "True if a response was requested for the event.",
1543
+ "type": "boolean",
1544
+ "x-ms-visibility": "advanced",
1545
+ "x-ms-summary": "Response Requested"
1546
+ },
1547
+ "showAs": {
1548
+ "description": "Status to show during the event.",
1549
+ "type": "string",
1550
+ "x-ms-visibility": "advanced",
1551
+ "x-ms-summary": "Show As"
1552
+ },
1553
+ "body": {
1554
+ "description": "body",
1555
+ "type": "object",
1556
+ "properties": {
1557
+ "contentType": {
1558
+ "description": "Text or Html.",
1559
+ "type": "string",
1560
+ "x-ms-visibility": "advanced",
1561
+ "x-ms-summary": "Content Type"
1562
+ },
1563
+ "content": {
1564
+ "description": "The content of the body of this event.",
1565
+ "type": "string",
1566
+ "x-ms-visibility": "advanced",
1567
+ "x-ms-summary": "Content"
1568
+ }
1569
+ },
1570
+ "x-ms-summary": "Body"
1571
+ },
1572
+ "start": {
1573
+ "description": "start",
1574
+ "type": "object",
1575
+ "properties": {
1576
+ "dateTime": {
1577
+ "format": "date-time",
1578
+ "description": "Start time of the event (example: '2016-11-01T14:30:00-07:00').",
1579
+ "type": "string",
1580
+ "x-ms-summary": "Date Time"
1581
+ },
1582
+ "timeZone": {
1583
+ "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
1584
+ "default": "UTC",
1585
+ "type": "string",
1586
+ "x-ms-visibility": "advanced",
1587
+ "x-ms-summary": "Time Zone"
1588
+ }
1589
+ },
1590
+ "x-ms-summary": "Start"
1591
+ },
1592
+ "end": {
1593
+ "description": "end",
1594
+ "type": "object",
1595
+ "properties": {
1596
+ "dateTime": {
1597
+ "format": "date-time",
1598
+ "description": "End time of the event (example: '2016-11-01T15:30:00-07:00').",
1599
+ "type": "string",
1600
+ "x-ms-summary": "Date Time"
1601
+ },
1602
+ "timeZone": {
1603
+ "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
1604
+ "default": "UTC",
1605
+ "type": "string",
1606
+ "x-ms-visibility": "advanced",
1607
+ "x-ms-summary": "Time Zone"
1608
+ }
1609
+ },
1610
+ "x-ms-summary": "End"
1611
+ },
1612
+ "location": {
1613
+ "description": "location",
1614
+ "type": "object",
1615
+ "properties": {
1616
+ "displayName": {
1617
+ "description": "The display name for the location of the event.",
1618
+ "type": "string",
1619
+ "x-ms-visibility": "advanced",
1620
+ "x-ms-summary": "Name"
1621
+ }
1622
+ },
1623
+ "x-ms-summary": "Location"
1624
+ }
1625
+ }
1626
+ },
1627
+ "UpdateCalendarEvent_Request": {
1628
+ "required": [
1629
+ "subject",
1630
+ "start",
1631
+ "end"
1632
+ ],
1633
+ "type": "object",
1634
+ "properties": {
1635
+ "subject": {
1636
+ "description": "Title of the event.",
1637
+ "type": "string",
1638
+ "x-ms-summary": "Subject"
1639
+ },
1640
+ "start": {
1641
+ "required": [
1642
+ "dateTime",
1643
+ "timeZone"
1644
+ ],
1645
+ "type": "object",
1646
+ "properties": {
1647
+ "dateTime": {
1648
+ "format": "date-time",
1649
+ "description": "Start time of the event (example: '2016-11-01T14:30:00').",
1650
+ "type": "string",
1651
+ "x-ms-summary": "Start Time"
1652
+ },
1653
+ "timeZone": {
1654
+ "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
1655
+ "default": "UTC",
1656
+ "type": "string",
1657
+ "x-ms-visibility": "internal",
1658
+ "x-ms-summary": "Time zone"
1659
+ }
1660
+ }
1661
+ },
1662
+ "end": {
1663
+ "required": [
1664
+ "dateTime",
1665
+ "timeZone"
1666
+ ],
1667
+ "type": "object",
1668
+ "properties": {
1669
+ "dateTime": {
1670
+ "format": "date-time",
1671
+ "description": "End time of the event (example: '2016-11-01T15:30:00').",
1672
+ "type": "string",
1673
+ "x-ms-summary": "End Time"
1674
+ },
1675
+ "timeZone": {
1676
+ "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
1677
+ "default": "UTC",
1678
+ "type": "string",
1679
+ "x-ms-visibility": "internal",
1680
+ "x-ms-summary": "Time zone"
1681
+ }
1682
+ }
1683
+ },
1684
+ "body": {
1685
+ "type": "object",
1686
+ "properties": {
1687
+ "content": {
1688
+ "description": "Body of the message associated with the event.",
1689
+ "type": "string",
1690
+ "x-ms-visibility": "advanced",
1691
+ "x-ms-summary": "Body"
1692
+ },
1693
+ "contentType": {
1694
+ "description": "Pick the content type: Text or Html.",
1695
+ "enum": [
1696
+ "Text",
1697
+ "Html"
1698
+ ],
1699
+ "type": "string",
1700
+ "x-ms-visibility": "advanced",
1701
+ "x-ms-summary": "Body Content Type"
1702
+ }
1703
+ }
1704
+ },
1705
+ "location": {
1706
+ "type": "object",
1707
+ "properties": {
1708
+ "displayName": {
1709
+ "description": "Location of the event.",
1710
+ "type": "string",
1711
+ "x-ms-visibility": "advanced",
1712
+ "x-ms-summary": "Location"
1713
+ }
1714
+ }
1715
+ },
1716
+ "importance": {
1717
+ "description": "The importance of the event: Low, Normal, or High.",
1718
+ "enum": [
1719
+ "Low",
1720
+ "Normal",
1721
+ "High"
1722
+ ],
1723
+ "type": "string",
1724
+ "x-ms-visibility": "advanced",
1725
+ "x-ms-summary": "Importance"
1726
+ },
1727
+ "isAllDay": {
1728
+ "description": "Set to true if the event lasts all day.",
1729
+ "type": "boolean",
1730
+ "x-ms-visibility": "advanced",
1731
+ "x-ms-summary": "Is All Day"
1732
+ },
1733
+ "isReminderOn": {
1734
+ "description": "Set to true if the event has a reminder.",
1735
+ "type": "boolean",
1736
+ "x-ms-visibility": "advanced",
1737
+ "x-ms-summary": "Is Reminder On"
1738
+ },
1739
+ "reminderMinutesBeforeStart": {
1740
+ "format": "int32",
1741
+ "description": "Time in minutes before event start to remind.",
1742
+ "type": "integer",
1743
+ "x-ms-visibility": "advanced",
1744
+ "x-ms-summary": "Reminder Start Duration"
1745
+ },
1746
+ "showAs": {
1747
+ "description": "Status to show during the event.",
1748
+ "enum": [
1749
+ "Free",
1750
+ "Tentative",
1751
+ "Busy",
1752
+ "Oof",
1753
+ "WorkingElsewhere",
1754
+ "Unknown"
1755
+ ],
1756
+ "type": "string",
1757
+ "x-ms-visibility": "advanced",
1758
+ "x-ms-summary": "Show As"
1759
+ },
1760
+ "responseRequested": {
1761
+ "description": "Set to true if the sender would like a response when the event is accepted or declined.",
1762
+ "type": "boolean",
1763
+ "x-ms-visibility": "advanced",
1764
+ "x-ms-summary": "Response Requested"
1765
+ }
1766
+ },
1767
+ "x-ms-test-value": {
1768
+ "subject": "Test Event from Postman",
1769
+ "start": {
1770
+ "dateTime": "2017-12-31T14:00:00",
1771
+ "timeZone": "UTC"
1772
+ },
1773
+ "end": {
1774
+ "dateTime": "2017-12-31T14:30:00",
1775
+ "timeZone": "UTC"
1776
+ },
1777
+ "originalStartTimeZone": "Pacific Standard Time",
1778
+ "originalEndTimeZone": "Pacific Standard Time",
1779
+ "body": {
1780
+ "contentType": "text",
1781
+ "content": "Test Body"
1782
+ },
1783
+ "location": {
1784
+ "displayName": "Redmond"
1785
+ },
1786
+ "importance": "normal",
1787
+ "isAllDay": false,
1788
+ "reminderMinutesBeforeStart": 99,
1789
+ "isReminderOn": true,
1790
+ "showAs": "busy",
1791
+ "responseRequested": true
1792
+ }
1793
+ },
1794
+ "UpdateCalendarEvent_HTMLRequest": {
1795
+ "required": [
1796
+ "subject",
1797
+ "start",
1798
+ "end"
1799
+ ],
1800
+ "type": "object",
1801
+ "properties": {
1802
+ "subject": {
1803
+ "description": "Title of the event.",
1804
+ "type": "string",
1805
+ "x-ms-summary": "Subject"
1806
+ },
1807
+ "start": {
1808
+ "required": [
1809
+ "dateTime",
1810
+ "timeZone"
1811
+ ],
1812
+ "type": "object",
1813
+ "properties": {
1814
+ "dateTime": {
1815
+ "format": "date-time",
1816
+ "description": "Start time of the event (example: '2016-11-01T14:30:00').",
1817
+ "type": "string",
1818
+ "x-ms-summary": "Start Time"
1819
+ },
1820
+ "timeZone": {
1821
+ "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
1822
+ "default": "UTC",
1823
+ "type": "string",
1824
+ "x-ms-visibility": "internal",
1825
+ "x-ms-summary": "Time zone"
1826
+ }
1827
+ }
1828
+ },
1829
+ "end": {
1830
+ "required": [
1831
+ "dateTime",
1832
+ "timeZone"
1833
+ ],
1834
+ "type": "object",
1835
+ "properties": {
1836
+ "dateTime": {
1837
+ "format": "date-time",
1838
+ "description": "End time of the event (example: '2016-11-01T15:30:00').",
1839
+ "type": "string",
1840
+ "x-ms-summary": "End Time"
1841
+ },
1842
+ "timeZone": {
1843
+ "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
1844
+ "default": "UTC",
1845
+ "type": "string",
1846
+ "x-ms-visibility": "internal",
1847
+ "x-ms-summary": "Time zone"
1848
+ }
1849
+ }
1850
+ },
1851
+ "body": {
1852
+ "type": "object",
1853
+ "required": [
1854
+ "contentType"
1855
+ ],
1856
+ "properties": {
1857
+ "content": {
1858
+ "description": "Body of the message associated with the event.",
1859
+ "type": "string",
1860
+ "format": "html",
1861
+ "x-ms-visibility": "advanced",
1862
+ "x-ms-summary": "Body"
1863
+ },
1864
+ "contentType": {
1865
+ "description": "Pick the content type: Text or Html.",
1866
+ "default": "Html",
1867
+ "type": "string",
1868
+ "x-ms-summary": "Body Content Type",
1869
+ "x-ms-visibility": "internal"
1870
+ }
1871
+ }
1872
+ },
1873
+ "location": {
1874
+ "type": "object",
1875
+ "properties": {
1876
+ "displayName": {
1877
+ "description": "Location of the event.",
1878
+ "type": "string",
1879
+ "x-ms-visibility": "advanced",
1880
+ "x-ms-summary": "Location"
1881
+ }
1882
+ }
1883
+ },
1884
+ "importance": {
1885
+ "description": "The importance of the event: Low, Normal, or High.",
1886
+ "enum": [
1887
+ "Low",
1888
+ "Normal",
1889
+ "High"
1890
+ ],
1891
+ "type": "string",
1892
+ "x-ms-visibility": "advanced",
1893
+ "x-ms-summary": "Importance"
1894
+ },
1895
+ "isAllDay": {
1896
+ "description": "Set to true if the event lasts all day.",
1897
+ "type": "boolean",
1898
+ "x-ms-visibility": "advanced",
1899
+ "x-ms-summary": "Is All Day"
1900
+ },
1901
+ "isReminderOn": {
1902
+ "description": "Set to true if the event has a reminder.",
1903
+ "type": "boolean",
1904
+ "x-ms-visibility": "advanced",
1905
+ "x-ms-summary": "Is Reminder On"
1906
+ },
1907
+ "reminderMinutesBeforeStart": {
1908
+ "format": "int32",
1909
+ "description": "Time in minutes before event start to remind.",
1910
+ "type": "integer",
1911
+ "x-ms-visibility": "advanced",
1912
+ "x-ms-summary": "Reminder Start Duration"
1913
+ },
1914
+ "showAs": {
1915
+ "description": "Status to show during the event.",
1916
+ "enum": [
1917
+ "Free",
1918
+ "Tentative",
1919
+ "Busy",
1920
+ "Oof",
1921
+ "WorkingElsewhere",
1922
+ "Unknown"
1923
+ ],
1924
+ "type": "string",
1925
+ "x-ms-visibility": "advanced",
1926
+ "x-ms-summary": "Show As"
1927
+ },
1928
+ "responseRequested": {
1929
+ "description": "Set to true if the sender would like a response when the event is accepted or declined.",
1930
+ "type": "boolean",
1931
+ "x-ms-visibility": "advanced",
1932
+ "x-ms-summary": "Response Requested"
1933
+ }
1934
+ },
1935
+ "x-ms-test-value": {
1936
+ "subject": "Test Event from Postman",
1937
+ "start": {
1938
+ "dateTime": "2017-12-31T15:00:00",
1939
+ "timeZone": "UTC"
1940
+ },
1941
+ "end": {
1942
+ "dateTime": "2017-12-31T15:30:00",
1943
+ "timeZone": "UTC"
1944
+ },
1945
+ "originalStartTimeZone": "Pacific Standard Time",
1946
+ "originalEndTimeZone": "Pacific Standard Time",
1947
+ "body": {
1948
+ "content": "Test Body"
1949
+ },
1950
+ "location": {
1951
+ "displayName": "Redmond"
1952
+ },
1953
+ "importance": "normal",
1954
+ "isAllDay": false,
1955
+ "reminderMinutesBeforeStart": 99,
1956
+ "isReminderOn": true,
1957
+ "showAs": "busy",
1958
+ "responseRequested": true
1959
+ }
1960
+ },
1961
+ "OnNewEvent_Response": {
1962
+ "description": "value",
1963
+ "type": "array",
1964
+ "items": {
1965
+ "type": "object",
1966
+ "properties": {
1967
+ "id": {
1968
+ "description": "Unique id of the event.",
1969
+ "type": "string",
1970
+ "x-ms-visibility": "advanced",
1971
+ "x-ms-summary": "Id"
1972
+ },
1973
+ "reminderMinutesBeforeStart": {
1974
+ "format": "int32",
1975
+ "description": "The number of minutes before the start of the event the reminder will fire.",
1976
+ "type": "integer",
1977
+ "x-ms-visibility": "advanced",
1978
+ "x-ms-summary": "Reminder Start Duration"
1979
+ },
1980
+ "isReminderOn": {
1981
+ "description": "Set to true if the event has a reminder.",
1982
+ "type": "boolean",
1983
+ "x-ms-visibility": "advanced",
1984
+ "x-ms-summary": "Is Reminder On"
1985
+ },
1986
+ "subject": {
1987
+ "description": "Title of the event.",
1988
+ "type": "string",
1989
+ "x-ms-summary": "Subject"
1990
+ },
1991
+ "importance": {
1992
+ "description": "The importance of the event: Low, Normal, or High.",
1993
+ "type": "string",
1994
+ "x-ms-summary": "Importance"
1995
+ },
1996
+ "isAllDay": {
1997
+ "description": "Set to true if the event lasts all day.",
1998
+ "type": "boolean",
1999
+ "x-ms-visibility": "advanced",
2000
+ "x-ms-summary": "Is All Day"
2001
+ },
2002
+ "responseRequested": {
2003
+ "description": "Set to true if the sender would like a response when the event is accepted or declined.",
2004
+ "type": "boolean",
2005
+ "x-ms-visibility": "advanced",
2006
+ "x-ms-summary": "Response Requested"
2007
+ },
2008
+ "showAs": {
2009
+ "description": "Status to show during the event.",
2010
+ "type": "string",
2011
+ "x-ms-visibility": "advanced",
2012
+ "x-ms-summary": "Show As"
2013
+ },
2014
+ "body": {
2015
+ "description": "body",
2016
+ "type": "object",
2017
+ "properties": {
2018
+ "contentType": {
2019
+ "description": "Body of the message associated with the event.",
2020
+ "type": "string",
2021
+ "x-ms-visibility": "advanced",
2022
+ "x-ms-summary": "Content Type"
2023
+ },
2024
+ "content": {
2025
+ "description": "Pick the content type: Text or Html.",
2026
+ "type": "string",
2027
+ "x-ms-visibility": "advanced",
2028
+ "x-ms-summary": "Content"
2029
+ }
2030
+ },
2031
+ "x-ms-summary": "Body"
2032
+ },
2033
+ "start": {
2034
+ "description": "start",
2035
+ "type": "object",
2036
+ "properties": {
2037
+ "dateTime": {
2038
+ "format": "date-time",
2039
+ "description": "Start time of the event (example: '2016-11-01T14:30:00-07:00').",
2040
+ "type": "string",
2041
+ "x-ms-summary": "Date Time"
2042
+ },
2043
+ "timeZone": {
2044
+ "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
2045
+ "type": "string",
2046
+ "x-ms-visibility": "advanced",
2047
+ "x-ms-summary": "Time Zone"
2048
+ }
2049
+ },
2050
+ "x-ms-summary": "Start"
2051
+ },
2052
+ "end": {
2053
+ "description": "end",
2054
+ "type": "object",
2055
+ "properties": {
2056
+ "dateTime": {
2057
+ "format": "date-time",
2058
+ "description": "End time of the event (example: '2016-11-01T15:30:00-07:00').",
2059
+ "type": "string",
2060
+ "x-ms-summary": "Date Time"
2061
+ },
2062
+ "timeZone": {
2063
+ "description": "Time zone of the event, specified as a time zone index value (example: 'Pacific Standard Time').",
2064
+ "type": "string",
2065
+ "x-ms-visibility": "advanced",
2066
+ "x-ms-summary": "Time Zone"
2067
+ }
2068
+ },
2069
+ "x-ms-summary": "End"
2070
+ },
2071
+ "location": {
2072
+ "description": "location",
2073
+ "type": "object",
2074
+ "properties": {
2075
+ "displayName": {
2076
+ "description": "The display name for the location of the event.",
2077
+ "type": "string",
2078
+ "x-ms-visibility": "advanced",
2079
+ "x-ms-summary": "Name"
2080
+ }
2081
+ },
2082
+ "x-ms-summary": "Location"
2083
+ }
2084
+ }
2085
+ },
2086
+ "x-ms-summary": "value"
2087
+ },
2088
+ "ObjectWithoutType": {}
2089
+ },
2090
+ "parameters": {
2091
+ "groupId__in_path": {
2092
+ "name": "groupId",
2093
+ "in": "path",
2094
+ "description": "Pick a group from the drop down or enter group id.",
2095
+ "required": true,
2096
+ "x-ms-summary": "Group Id",
2097
+ "x-ms-dynamic-values": {
2098
+ "operationId": "ListOwnedGroups_V2",
2099
+ "value-path": "id",
2100
+ "value-title": "displayName",
2101
+ "value-collection": "value"
2102
+ },
2103
+ "x-ms-visibility": "important",
2104
+ "type": "string",
2105
+ "format": "guid"
2106
+ },
2107
+ "groupId__in_query": {
2108
+ "name": "groupId",
2109
+ "in": "query",
2110
+ "description": "Pick a group from the drop down or enter group id.",
2111
+ "required": true,
2112
+ "x-ms-summary": "Group Id",
2113
+ "x-ms-dynamic-values": {
2114
+ "operationId": "ListOwnedGroups_V2",
2115
+ "value-path": "id",
2116
+ "value-title": "displayName",
2117
+ "value-collection": "value"
2118
+ },
2119
+ "x-ms-visibility": "important",
2120
+ "type": "string",
2121
+ "format": "guid"
2122
+ },
2123
+ "deletedGroupId__in_path": {
2124
+ "name": "groupId",
2125
+ "in": "path",
2126
+ "description": "Pick a group from the drop down or enter group id.",
2127
+ "required": true,
2128
+ "x-ms-summary": "Group Id",
2129
+ "x-ms-visibility": "important",
2130
+ "type": "string",
2131
+ "format": "guid"
2132
+ },
2133
+ "extractSensitivityLabel": {
2134
+ "name": "extractSensitivityLabel",
2135
+ "in": "query",
2136
+ "required": false,
2137
+ "type": "boolean",
2138
+ "description": "A boolean whether to extract sensitivity label Id for associated artefact.",
2139
+ "x-ms-summary": "Extract Sensitivity Label",
2140
+ "x-ms-visibility": "important"
2141
+ },
2142
+ "fetchSensitivityLabelMetadata": {
2143
+ "name": "fetchSensitivityLabelMetadata",
2144
+ "in": "query",
2145
+ "required": false,
2146
+ "type": "boolean",
2147
+ "description": "A boolean whether to fetch sensitivity label Metadata for associated LabelId.",
2148
+ "x-ms-summary": "Sensitivity Label Metadata",
2149
+ "x-ms-visibility": "important"
2150
+ }
2151
+ },
2152
+ "securityDefinitions": {},
2153
+ "security": [],
2154
+ "x-ms-connector-metadata": [
2155
+ {
2156
+ "propertyName": "Website",
2157
+ "propertyValue": "https://www.office.com/"
2158
+ },
2159
+ {
2160
+ "propertyName": "Privacy policy",
2161
+ "propertyValue": "https://privacy.microsoft.com/"
2162
+ },
2163
+ {
2164
+ "propertyName": "Categories",
2165
+ "propertyValue": "AI;Business Intelligence"
2166
+ }
2167
+ ],
2168
+ "externalDocs": {
2169
+ "url": "https://docs.microsoft.com/connectors/office365groups"
2170
+ }
2171
+ },
2172
+ "runtimeUrls": [
2173
+ "https://unitedstates-002.azure-apim.net/apim/office365groups"
2174
+ ],
2175
+ "primaryRuntimeUrl": "https://unitedstates-002.azure-apim.net/apim/office365groups",
2176
+ "doNotUseApiHubNetRuntimeUrl": "https://unitedstates-002.azure-apim.net/apim/office365groups",
2177
+ "metadata": {
2178
+ "source": "marketplace",
2179
+ "brandColor": "#EB3C00",
2180
+ "useNewApimVersion": "true",
2181
+ "version": {
2182
+ "previous": "1759\\1.0.1759.4274",
2183
+ "current": "releases/v1.0.1777\\1.0.1777.4410"
2184
+ }
2185
+ },
2186
+ "capabilities": [
2187
+ "actions",
2188
+ "triggers"
2189
+ ],
2190
+ "interfaces": {},
2191
+ "description": "Office 365 Groups lets you manage group membership and calendar events in your organization using your Office 365 account. You can perform various actions such as get group roster, add or remove members and create group events.",
2192
+ "createdTime": "2018-09-18T20:23:24.4590653Z",
2193
+ "changedTime": "2025-10-16T05:32:37.4996627Z",
2194
+ "releaseTag": "Production",
2195
+ "tier": "Standard",
2196
+ "publisher": "Microsoft",
2197
+ "scopes": {
2198
+ "will": [],
2199
+ "wont": []
2200
+ },
2201
+ "rateLimit": 0,
2202
+ "apiVersion": "None"
2203
+ }
2204
2204
  }