Skip to content

Commit 4d2f200

Browse files
committed
Merge branch 'v-rmanda/224130/languageTag_educationAssignment_educationModule' of https://github.com/microsoftgraph/microsoft-graph-docs into v-rmanda/224130/languageTag_educationAssignment_educationModule
2 parents 10d534a + 5d60842 commit 4d2f200

File tree

659 files changed

+8303
-8006
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

659 files changed

+8303
-8006
lines changed

.acrolinx-config.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you need a scoring exception for content in this PR, add the *ready for conte
3636
- Escalate the exception request to the Acrolinx Review Team for review.
3737
- Approve the exception and work with the GitHub Admin Team to merge the PR to the default branch.
3838
39-
For more information about the exception criteria and exception process, see [Acrolinx for Microsoft Graph docs](https://aka.ms/msgo?pagePath=/Document%20APIs/Author%20content/Acrolinx).
39+
For more information about the exception criteria and exception process, see [Acrolinx for Microsoft Graph docs](https://eng.ms/cid/27dee76c-3a60-4e65-8fdf-08ea849b3498/fid/d80517923e291f07a0da8b5ce8e082ba680a55ddda65497a1061ca9f97c50290).
4040
4141
Select the scorecard links for each article to review the Acrolinx feedback on grammar, spelling, punctuation, writing style, and terminology:
4242
@@ -52,6 +52,6 @@ Select the scorecard links for each article to review the Acrolinx feedback on g
5252
"
5353
**More info about Acrolinx**
5454
55-
Use the Acrolinx extension, or sidebar, in Visual Studio Code to check spelling, grammar, style, tone, clarity, and key terminology when you're creating or updating content. For more information, see [Use the Visual Studio Code extension to run Acrolinx locally](https://review.docs.microsoft.com/office-authoring-guide/acrolinx-vscode?branch=main).
55+
Use the Acrolinx extension, or sidebar, in Visual Studio Code to check spelling, grammar, style, tone, clarity, and key terminology when you're creating or updating content. For more information, see [Use the Visual Studio Code extension to run Acrolinx locally](https://learn.microsoft.com/help/platform/acrolinx-vscode-setup) (you must sign in to access the page).
5656
"
5757
}

api-reference/beta/api/activitiescontainer-post-contentactivities.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ If successful, this method returns a `201 Created` response code and a [contentA
5858
### Request
5959

6060
The following example shows a request.
61+
# [HTTP](#tab/http)
6162
<!-- {
6263
"blockType": "request",
6364
"name": "create_contentactivity_from_"
@@ -101,6 +102,36 @@ Content-Type: application/json
101102
}
102103
```
103104

105+
# [C#](#tab/csharp)
106+
[!INCLUDE [sample-code](../includes/snippets/csharp/create-contentactivity-from--csharp-snippets.md)]
107+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
108+
109+
# [CLI](#tab/cli)
110+
[!INCLUDE [sample-code](../includes/snippets/cli/create-contentactivity-from--cli-snippets.md)]
111+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
112+
113+
# [Go](#tab/go)
114+
[!INCLUDE [sample-code](../includes/snippets/go/create-contentactivity-from--go-snippets.md)]
115+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
116+
117+
# [Java](#tab/java)
118+
[!INCLUDE [sample-code](../includes/snippets/java/create-contentactivity-from--java-snippets.md)]
119+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
120+
121+
# [JavaScript](#tab/javascript)
122+
[!INCLUDE [sample-code](../includes/snippets/javascript/create-contentactivity-from--javascript-snippets.md)]
123+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
124+
125+
# [PHP](#tab/php)
126+
[!INCLUDE [sample-code](../includes/snippets/php/create-contentactivity-from--php-snippets.md)]
127+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
128+
129+
# [Python](#tab/python)
130+
[!INCLUDE [sample-code](../includes/snippets/python/create-contentactivity-from--python-snippets.md)]
131+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
132+
133+
---
134+
104135
### Response
105136

106137
The following example shows the response.

api-reference/beta/api/application-list.md

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: "sureshja"
55
ms.localizationpriority: high
66
ms.subservice: "entra-applications"
77
doc_type: apiPageType
8-
ms.date: 07/29/2024
8+
ms.date: 05/16/2025
99
---
1010

1111
# List applications
@@ -464,6 +464,52 @@ Content-type: application/json
464464
}
465465
```
466466

467+
### Example 6: Get the applications with identifierUris using the API scheme
468+
469+
#### Request
470+
471+
The following example shows a request. This request requires the **ConsistencyLevel** header set to `eventual` because `$count` is in the request. For more information about the use of **ConsistencyLevel** and `$count`, see [Advanced query capabilities on directory objects](/graph/aad-advanced-queries).
472+
473+
<!-- {
474+
"blockType": "request",
475+
"name": "list_application_filteridentifieruris"
476+
}-->
477+
```msgraph-interactive
478+
GET https://graph.microsoft.com/beta/applications?$filter=identifierUris/any(x:startswith(x,'api://'))&$count=true
479+
ConsistencyLevel: eventual
480+
```
481+
482+
#### Response
483+
484+
The following example shows the response.
485+
> **Note:** The response object shown here might be shortened for readability.
486+
487+
<!-- {
488+
"blockType": "response",
489+
"truncated": true,
490+
"@odata.type": "microsoft.graph.application",
491+
"isCollection": true
492+
} -->
493+
```http
494+
HTTP/1.1 200 OK
495+
Content-type: application/json
496+
497+
{
498+
"@odata.context": "https://graph.microsoft.com/beta/$metadata#applications",
499+
"@odata.count": 15067,
500+
"@odata.nextLink": "https://graph.microsoft.com/beta/applications?$filter=identifierUris%2fany(x%3astartswith(x%2c%27api%3a%2f%2f%27))&$count=true&$skiptoken=m~AQAoOzAxOTk3MTE1OTYyMDQ4MGE4YzE0ZjlkNWM0Y2ViMjE5OzswOzA7Ow",
501+
"@microsoft.graph.tips": "Use $select to choose only the properties your app needs, as this can lead to performance improvements. For example: GET applications?$select=api,appCategory",
502+
"value": [
503+
{
504+
"id": "000101ef-c7d0-47a0-83bd-d234347da0f3",
505+
"identifierUris": [
506+
"api://000101ef-c7d0-47a0-83bd-d234347da0f3"
507+
]
508+
}
509+
]
510+
}
511+
```
512+
467513
<!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79
468514
2015-10-25 14:57:30 UTC -->
469515
<!--

api-reference/beta/api/attendancerecord-list.md

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,7 @@ The following example shows how to get a list of attendance records for the atte
419419

420420
The following example shows a request.
421421

422+
# [HTTP](#tab/http)
422423
<!-- {
423424
"blockType": "request",
424425
"name": "list_attendancerecord_townhall",
@@ -429,6 +430,40 @@ The following example shows a request.
429430
GET https://graph.microsoft.com/beta/solutions/virtualEvents/townhalls/f8ce2a5f-0e6a-4186-aa90-1f64bc023566@5466a424-aadf-425c-9b24-034ca28d4bdd/sessions/8d62dd52-4dff-4c75-96a9-f905cc3ff942/attendanceReports/2c2454-7613-4d6e-9c7c-4c8/attendanceRecords
430431
```
431432

433+
# [C#](#tab/csharp)
434+
[!INCLUDE [sample-code](../includes/snippets/csharp/list-attendancerecord-townhall-csharp-snippets.md)]
435+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
436+
437+
# [CLI](#tab/cli)
438+
[!INCLUDE [sample-code](../includes/snippets/cli/list-attendancerecord-townhall-cli-snippets.md)]
439+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
440+
441+
# [Go](#tab/go)
442+
[!INCLUDE [sample-code](../includes/snippets/go/list-attendancerecord-townhall-go-snippets.md)]
443+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
444+
445+
# [Java](#tab/java)
446+
[!INCLUDE [sample-code](../includes/snippets/java/list-attendancerecord-townhall-java-snippets.md)]
447+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
448+
449+
# [JavaScript](#tab/javascript)
450+
[!INCLUDE [sample-code](../includes/snippets/javascript/list-attendancerecord-townhall-javascript-snippets.md)]
451+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
452+
453+
# [PHP](#tab/php)
454+
[!INCLUDE [sample-code](../includes/snippets/php/list-attendancerecord-townhall-php-snippets.md)]
455+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
456+
457+
# [PowerShell](#tab/powershell)
458+
[!INCLUDE [sample-code](../includes/snippets/powershell/list-attendancerecord-townhall-powershell-snippets.md)]
459+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
460+
461+
# [Python](#tab/python)
462+
[!INCLUDE [sample-code](../includes/snippets/python/list-attendancerecord-townhall-python-snippets.md)]
463+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
464+
465+
---
466+
432467
#### Response
433468

434469
The following example shows the response.
@@ -485,4 +520,4 @@ Content-Type: application/json
485520
}
486521
]
487522
}
488-
```
523+
```

api-reference/beta/api/callaiinsight-get.md

Lines changed: 71 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ The following example shows how to get a single set of AI insights for an online
7575

7676
The following example shows a request.
7777

78+
# [HTTP](#tab/http)
7879
<!-- {
7980
"blockType": "request",
8081
"name": "get_callAiInsight",
@@ -85,6 +86,40 @@ The following example shows a request.
8586
GET https://graph.microsoft.com/beta/copilot/users/b935e675-5e67-48b9-8d45-249d5f88e964/onlineMeetings/YTc3OTFhNWQtNTgwZC00OGZjLWJhYjQtOTFmNTUzMmU4MzEyqMCoqMTk6bWVldGluZ19ZbU0zTnpJNU9USXRZakU0WlMwME1tUTNMVGt6TVRRdFkyWm1PRGRtWmpsaVptRTNAdGhyZWFkLnYy/aiInsights/Z2HWbTHyQJ69uWxIOzxAQA==IVdGYmZhbG5ma0tKWk4tLWhOY3ZCcnVNZ2s2YmdUTk1yTTI0MVd1Rm1jZk5SUG90U0FPbFNKdEZjcVpRM1hvYkZOWW5UYXJySVUyS2NnOVpNOENqa2cjIzExYzkxNjVmZi1hZTkyLTQ5YWYtODliNC00MTU1NTRhMzZhNTFhMWQyODZkYi02MTQ5LTRiM2QtOTVhZC0yM2M5ZTFiZjY4NTMwNDAwMDAwMDgyMDBFMDAwNzRDNUI3MTAxQTgyRTAwODAwMDAwMDAwMmRlMTE0NTdhZGU4ZGEwMTAwMDAwMDAwMDAwMDAwMDAxMDAwMDAwMGQ0ZjRmMjNlMzFkZDFmNDlhZjc5YTM3YjRlYmFlZGQy
8687
```
8788

89+
# [C#](#tab/csharp)
90+
[!INCLUDE [sample-code](../includes/snippets/csharp/get-callaiinsight-csharp-snippets.md)]
91+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
92+
93+
# [CLI](#tab/cli)
94+
[!INCLUDE [sample-code](../includes/snippets/cli/get-callaiinsight-cli-snippets.md)]
95+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
96+
97+
# [Go](#tab/go)
98+
[!INCLUDE [sample-code](../includes/snippets/go/get-callaiinsight-go-snippets.md)]
99+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
100+
101+
# [Java](#tab/java)
102+
[!INCLUDE [sample-code](../includes/snippets/java/get-callaiinsight-java-snippets.md)]
103+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
104+
105+
# [JavaScript](#tab/javascript)
106+
[!INCLUDE [sample-code](../includes/snippets/javascript/get-callaiinsight-javascript-snippets.md)]
107+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
108+
109+
# [PHP](#tab/php)
110+
[!INCLUDE [sample-code](../includes/snippets/php/get-callaiinsight-php-snippets.md)]
111+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
112+
113+
# [PowerShell](#tab/powershell)
114+
[!INCLUDE [snippet-not-available](../includes/snippets/snippet-not-available.md)]
115+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
116+
117+
# [Python](#tab/python)
118+
[!INCLUDE [sample-code](../includes/snippets/python/get-callaiinsight-python-snippets.md)]
119+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
120+
121+
---
122+
88123
#### Response
89124

90125
The following example shows the response.
@@ -178,17 +213,52 @@ The following example shows how to get a single set of AI insights of an online
178213

179214
The following example shows a request.
180215

216+
# [HTTP](#tab/http)
181217
<!-- {
182218
"blockType": "request",
183219
"name": "get_callAiInsight_using_contentCorrelationId",
184220
"sampleKeys": ["YTc3OTFhNWQtNTgwZC00OGZjLWJhYjQtOTFmNTUzMmU4MzEyqMCoqMTk6bWVldGluZ19ZbU0zTnpJNU9USXRZakU0WlMwME1tUTNMVGt6TVRRdFkyWm1PRGRtWmpsaVptRTNAdGhyZWFkLnYy"]
185221
}
186222
-->
187223

188-
```http
224+
```msgraph-interactive
189225
GET https://graph.microsoft.com/beta/me/onlineMeetings/YTc3OTFhNWQtNTgwZC00OGZjLWJhYjQtOTFmNTUzMmU4MzEyqMCoqMTk6bWVldGluZ19ZbU0zTnpJNU9USXRZakU0WlMwME1tUTNMVGt6TVRRdFkyWm1PRGRtWmpsaVptRTNAdGhyZWFkLnYy/aiInsights?$filter=contentcorrelationId+eq+'bc842d7a-2f6e-4b18-a1c7-73ef91d5c8e3'
190226
```
191227

228+
# [C#](#tab/csharp)
229+
[!INCLUDE [sample-code](../includes/snippets/csharp/get-callaiinsight-using-contentcorrelationid-csharp-snippets.md)]
230+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
231+
232+
# [CLI](#tab/cli)
233+
[!INCLUDE [sample-code](../includes/snippets/cli/get-callaiinsight-using-contentcorrelationid-cli-snippets.md)]
234+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
235+
236+
# [Go](#tab/go)
237+
[!INCLUDE [sample-code](../includes/snippets/go/get-callaiinsight-using-contentcorrelationid-go-snippets.md)]
238+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
239+
240+
# [Java](#tab/java)
241+
[!INCLUDE [sample-code](../includes/snippets/java/get-callaiinsight-using-contentcorrelationid-java-snippets.md)]
242+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
243+
244+
# [JavaScript](#tab/javascript)
245+
[!INCLUDE [sample-code](../includes/snippets/javascript/get-callaiinsight-using-contentcorrelationid-javascript-snippets.md)]
246+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
247+
248+
# [PHP](#tab/php)
249+
[!INCLUDE [sample-code](../includes/snippets/php/get-callaiinsight-using-contentcorrelationid-php-snippets.md)]
250+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
251+
252+
# [PowerShell](#tab/powershell)
253+
[!INCLUDE [sample-code](../includes/snippets/powershell/get-callaiinsight-using-contentcorrelationid-powershell-snippets.md)]
254+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
255+
256+
# [Python](#tab/python)
257+
[!INCLUDE [sample-code](../includes/snippets/python/get-callaiinsight-using-contentcorrelationid-python-snippets.md)]
258+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
259+
260+
---
261+
192262
#### Response
193263

194264
The following example shows the response.

api-reference/beta/api/channel-list-allmembers.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ The following example shows how to use the `$filter` query parameter to get a sp
163163

164164
The following example shows a request.
165165

166+
# [HTTP](#tab/http)
166167
<!-- {
167168
"blockType": "request",
168169
"name": "get_members_in_channel_filter_by_userid",
@@ -173,6 +174,40 @@ The following example shows a request.
173174
GET https://graph.microsoft.com/beta/teams/ee0f5ae2-8bc6-4ae5-8466-7daeebbfa062/channels/19%3A20bc1df46b1148e9b22539b83bc66809%40thread.skype/allMembers?$filter=(microsoft.graph.aadUserConversationMember/userId eq '73761f06-2ac9-469c-9f10-279a8cc267f9')
174175
```
175176

177+
# [C#](#tab/csharp)
178+
[!INCLUDE [sample-code](../includes/snippets/csharp/get-members-in-channel-filter-by-userid-csharp-snippets.md)]
179+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
180+
181+
# [CLI](#tab/cli)
182+
[!INCLUDE [sample-code](../includes/snippets/cli/get-members-in-channel-filter-by-userid-cli-snippets.md)]
183+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
184+
185+
# [Go](#tab/go)
186+
[!INCLUDE [sample-code](../includes/snippets/go/get-members-in-channel-filter-by-userid-go-snippets.md)]
187+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
188+
189+
# [Java](#tab/java)
190+
[!INCLUDE [sample-code](../includes/snippets/java/get-members-in-channel-filter-by-userid-java-snippets.md)]
191+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
192+
193+
# [JavaScript](#tab/javascript)
194+
[!INCLUDE [sample-code](../includes/snippets/javascript/get-members-in-channel-filter-by-userid-javascript-snippets.md)]
195+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
196+
197+
# [PHP](#tab/php)
198+
[!INCLUDE [sample-code](../includes/snippets/php/get-members-in-channel-filter-by-userid-php-snippets.md)]
199+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
200+
201+
# [PowerShell](#tab/powershell)
202+
[!INCLUDE [sample-code](../includes/snippets/powershell/get-members-in-channel-filter-by-userid-powershell-snippets.md)]
203+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
204+
205+
# [Python](#tab/python)
206+
[!INCLUDE [sample-code](../includes/snippets/python/get-members-in-channel-filter-by-userid-python-snippets.md)]
207+
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
208+
209+
---
210+
176211
#### Response
177212
The following example shows the response.
178213
>**Note:** The response object shown here might be shortened for readability.

api-reference/beta/api/cloudpcprovisioningpolicy-retrievepolicyapplyschedule.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,10 @@ HTTP/1.1 200 OK
115115
{
116116
"@odata.type": "https://graph.microsoft.com/beta/$metadata#cloudPcPolicyScheduledApplyActionDetail",
117117
"reservePercentage": 50,
118-
"cronScheduleExpression": "0 0 0 20 * *"
118+
"cronScheduleExpression": "0 0 0 20 * *",
119+
"nextRunDateTime": "2025-03-20 08:00:00",
120+
"startDateTime": "2025-03-12 00:00:00",
121+
"endDateTime": null,
122+
"timezone": "cst"
119123
}
120124
```

api-reference/beta/api/cloudpcprovisioningpolicy-schedulepolicyapplytask.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ The following table shows the properties that can be supplied when you schedule
5353
|:---|:---|:---|
5454
|reservePercentage|Int32|For `Frontline shared` only. The percentage of Cloud PCs to keep available. Administrators can set this property to a value from 0 to 99. Cloud PCs are reprovisioned only when there are no active and connected Cloud PC users.|
5555
|cronScheduleExpression|String|Administrators can set a cron expression to define the scheduling rules for automatic regular apply. When auto provision is disabled, `cronScheduleExpression` is set to null, stopping the automatic task scheduling (ex. "0 0 0 20 * *" means schedules a job to run at midnight on the 20th of every month). Read-only.|
56+
|startDateTime|String|Indicates IT Admins can set a start date to define the first scheduler run after this time. If not set, default is current time. There are no time zone information at this time, it needs to be coordinated with `timezone`, for example, "2025-01-01 00:00:00" with "China Standard Time" means the scheduling rule will take effect after Jan 01 2025 00:00:00 GMT+0800 (China Standard Time).|
57+
|endDateTime|String|Indicates IT Admins can set an end date to define the last scheduler run before this time. If not set, the scheduler runs continuously. There are no time zone information at this time, it needs to be coordinated with `timezone`, for example, "2025-02-01 00:00:00" with "China Standard Time" means the scheduling rule will take effect before Feb 01 2025 00:00:00 GMT+0800 (China Standard Time).|
58+
|timezone|cloudPcPolicyTimezone|Indicates IT Admins can set a timezone to define the timezone of `nextRunDateTime`, `startDateTime`, `endDateTime`, default is `gmt`. Possible values are `gmt`, `bit`, `nut`, `hst`, `mit`, `akst`, `pst`, `mst`, `east`, `est`, `ast`, `nst`, `art`, `gst`, `azot`, `cet`, `cat`, `eat`, `get`, `pkt`, `ist`, `bst`, `tha`, `cst`, `jst`, `acst`, `pgt`, `sbt`, `fjt`, `tot`, `lint`, and `unknownFutureValue`.|
5659

5760
## Response
5861

@@ -76,7 +79,10 @@ POST https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/provision
7679
7780
{
7881
"reservePercentage": 50,
79-
"cronScheduleExpression": "0 0 0 20 * *"
82+
"cronScheduleExpression": "0 0 0 20 * *",
83+
"startDateTime": "2025-03-12 00:00:00",
84+
"endDateTime": null,
85+
"timezone": "cst"
8086
}
8187
8288
```

0 commit comments

Comments
 (0)