Skip to content

Commit 7d3f98d

Browse files
committed
Style and minor fixes
1 parent fda495c commit 7d3f98d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/active-directory/external-identities/code-samples.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ms.collection: M365-identity-device-management
2020

2121
## PowerShell example
2222

23-
You can bulk-invite external users to an organization from email addresses that you have stored in a .CSV file.
23+
You can bulk-invite external users to an organization from email addresses that you've stored in a .CSV file.
2424

2525
1. Prepare the .CSV file
2626
Create a new CSV file and name it invitations.csv. In this example, the file is saved in C:\data, and contains the following information:
@@ -50,15 +50,15 @@ You can bulk-invite external users to an organization from email addresses that
5050
foreach ($email in $invitations) {New-AzureADMSInvitation -InvitedUserEmailAddress $email.InvitedUserEmailAddress -InvitedUserDisplayName $email.Name -InviteRedirectUrl https://wingtiptoysonline-dev-ed.my.salesforce.com -InvitedUserMessageInfo $messageInfo -SendInvitationMessage $true}
5151
```
5252

53-
This cmdlet sends an invitation to the email addresses in invitations.csv. Additional features of this cmdlet include:
53+
This cmdlet sends an invitation to the email addresses in invitations.csv. More features of this cmdlet include:
5454

5555
- Customized text in the email message
5656
- Including a display name for the invited user
5757
- Sending messages to CCs or suppressing email messages altogether
5858

5959
## Code sample
6060

61-
Here we illustrate how to call the invitation API, in "app-only" mode, to get the redemption URL for the resource to which you are inviting the B2B user. The goal is to send a custom invitation email. The email can be composed with an HTTP client, so you can customize how it looks and send it through the Microsoft Graph API.
61+
The code sample illustrates how to call the invitation API and get the redemption URL. Use the redemption URL to send a custom invitation email. The email can be composed with an HTTP client, so you can customize how it looks and send it through the Microsoft Graph API.
6262

6363

6464
# [HTTP](#tab/http)

0 commit comments

Comments
 (0)