Skip to content

Commit dde93d4

Browse files
committed
wording updates
1 parent bd41441 commit dde93d4

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

articles/education-hub/add-student-api.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.custom: template-how-to
1111

1212
# Add students to a lab in Education Hub using REST APIs
1313

14-
This article will walk you through how to add students to a lab.
14+
This article walks through how to add students to a lab.
1515

1616
## Prerequisites
1717

@@ -21,15 +21,15 @@ This article will walk you through how to add students to a lab.
2121

2222
## Add students to the lab
2323

24-
After a lab has been created, call the endpoint below and make sure to replace the sections that are surrounded by <>.
24+
After a lab has been created, call the add students endpoint and make sure to replace the sections that are surrounded by <>.
2525
The invoice section ID must be the same invoice section ID of the lab you want to add this student to.
2626

2727

2828
```json
2929
PUT https://management.azure.com/providers/Microsoft.Billing/billingAccounts/<BillingAccountID>/billingProfiles/<BillingProfileID>/invoiceSections/<InvoiceSectionID>/providers/Microsoft.Education/labs/default/students/<StudentID>?api-version=2021-12-01-preview
3030
```
3131

32-
Call the above API with a body similar to the one below. Change the body to include details of the student you want to add to the lab.
32+
Call the API with a body similar to the following. Change the body to include details of the student you want to add to the lab.
3333

3434
```json
3535
{
@@ -85,13 +85,13 @@ The API response returns details of the newly added student.
8585

8686
## Check the details of the students in a lab
8787

88-
Calling this API will allow us to see all of the students that are in the specified lab.
88+
Calling this API allows to see all of the students that are in the specified lab.
8989

9090
```json
9191
GET https://management.azure.com/providers/Microsoft.Billing/billingAccounts/<BillingAccountID/billingProfiles/<BillingProfileID>/invoiceSections/<InvoiceSectionID>/providers/Microsoft.Education/labs/default/students?includeDeleted=true&api-version=2021-12-01-preview
9292
```
9393

94-
The API response will include information about the students in the lab and will even show student that have been deleted from the lab (if the includeDeleted flag is set to true)
94+
The API response includes information about the students in the lab.
9595

9696
```json
9797
{

articles/education-hub/create-lab-education-hub.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.custom: template-how-to
1111

1212
# Create a lab in Azure Education Hub through REST APIs.
1313

14-
This article will walk you through how to create a lab and verify that the lab has been created.
14+
This article walks you through how to create a lab and verify that the lab has been created.
1515

1616
## Prerequisites
1717

@@ -24,7 +24,7 @@ This article will walk you through how to create a lab and verify that the lab h
2424
PUT https://management.azure.com/providers/Microsoft.Billing/billingAccounts/<BillingAccountID>/billingProfiles/<BillingProfileID>/invoiceSections/<InvoiceSectionID>/providers/Microsoft.Education/labs/default?api-version=2021-12-01-preview
2525
```
2626

27-
Call the above API with the body similar to the one below. Include your details for what the display name will be and how much budget you will allocate for this lab.
27+
Call the create lab API with the body similar to the following. Include your details for the display name and how much budget you allocate for this lab.
2828

2929
```json
3030
{
@@ -89,13 +89,13 @@ The API response returns details of the newly created lab. Congratulations, you
8989

9090
## Check the details of a lab
9191

92-
Now that the lab has been created and a student has been added to the lab, let's get the details for the lab. Getting the lab details will provide you with meta data like when the lab was created and how much budget it has. It will not include information about students in the lab.
92+
Now that the lab has been created and a student has been added to the lab, let's get the details for the lab. Getting the lab details will provide you with meta data like when the lab was created and how much budget it has.
9393

9494
```json
9595
GET https://management.azure.com/providers/Microsoft.Billing/billingAccounts/<BillingAccountID>/billingProfiles/<BillingProfileID>/invoiceSections/<InvoiceSectionID>/providers/Microsoft.Education/labs/default?includeBudget=true&api-version=2021-12-01-preview
9696
```
9797

98-
The API response will include information about the lab and budget information (if the include budget flag is set to true)
98+
The API response includes information about the lab and budget information.
9999

100100
```json
101101
{

0 commit comments

Comments
 (0)