Skip to content

Commit 9919009

Browse files
committed
consistency for Graph
1 parent 8a75c48 commit 9919009

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

articles/active-directory/users-groups-roles/roles-aus-add-manage-groups.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ In the preview, you can assign groups only individually to an administrative uni
4848

4949
In this example, the cmdlet Add-AzureADAdministrativeUnitMember is used to add the group to the administrative unit. The object ID of the administrative unit and the object ID of the group to be added are taken as argument. The highlighted section may be changed as required for the specific environment.
5050

51-
### Graph API
51+
### Microsoft Graph
5252

5353
Http request
5454
POST /administrativeUnits/{Admin Unit id}/members/$ref
@@ -87,7 +87,7 @@ This will help you get all the members of the administrative unit. If you want t
8787
}
8888
}
8989

90-
### Graph API
90+
### Microsoft Graph
9191

9292
HTTP request
9393
GET /administrativeUnits/{Admin id}/members/$/microsoft.graph.group
@@ -106,7 +106,7 @@ In the Azure AD portal, you can open a group's details by opening **Groups**. Se
106106

107107
Get-AzureADAdministrativeUnit | where { Get-AzureADAdministrativeUnitMember -ObjectId $_.ObjectId | where {$_.ObjectId -eq $groupObjId} }
108108

109-
### Graph
109+
### Microsoft Graph
110110

111111
https://graph.microsoft.com/beta/groups/<group-id>/memberOf/$/Microsoft.Graph.AdministrativeUnit
112112

articles/active-directory/users-groups-roles/roles-aus-add-manage-users.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ list-user-au.png)
8484

8585
Get-AzureADAdministrativeUnit | where { Get-AzureADAdministrativeUnitMember -ObjectId $_.ObjectId | where {$_.ObjectId -eq $userObjId} }
8686

87-
### Graph
87+
### Microsoft Graph
8888

8989
https://graph.microsoft.com/beta/users//memberOf/$/Microsoft.Graph.AdministrativeUnit
9090

@@ -104,7 +104,7 @@ Alternatively, go to Azure AD > Administrative units and select the administrati
104104

105105
Remove-AzureADAdministrativeUnitMember -ObjectId $auId -MemberId $memberUserObjId
106106

107-
### Graph
107+
### Microsoft Graph
108108

109109
https://graph.microsoft.com/beta/administrativeUnits/<adminunit-id>/members/<user-id>/$ref
110110

articles/active-directory/users-groups-roles/roles-aus-assign-roles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Select the role to be assigned and then select **Add assignments**. This will sl
5454

5555
The highlighted section may be changed as required for the specific environment.
5656

57-
### Graph API
57+
### Microsoft Graph
5858

5959
Http request
6060
POST /administrativeUnits/{id}/scopedRoleMembers
@@ -80,7 +80,7 @@ All the role assignments done with an administrative unit scope can be viewed in
8080

8181
The highlighted section may be changed as required for the specific environment.
8282

83-
### Graph API
83+
### Microsoft Graph
8484

8585
Http request
8686
GET /administrativeUnits/{id}/scopedRoleMembers

0 commit comments

Comments
 (0)