You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Customer intent: As a tenant administrator, I want to update the sign-in information for a guest user.
17
18
---
18
19
19
20
# Reset redemption status for a guest user (Preview)
20
21
21
-
After a guest user has redeemed your invitation for B2B collaboration, there might be times when you'll need to update their sign-in information, for example when:
22
+
In this article, you'll learn how to update the [guest user's](user-properties.md) sign-in information after they've redeemed your invitation for B2B collaboration. There might be times when you'll need to update their sign-in information, for example when:
22
23
23
24
- The user wants to sign in using a different email and identity provider
24
25
- The account for the user in their home tenant has been deleted and re-created
25
26
- The user has moved to a different company, but they still need the same access to your resources
26
27
- The user’s responsibilities have been passed along to another user
27
28
28
-
To manage these scenarios previously, you had to manually delete the guest user’s account from your directory and reinvite the user. Now you can use PowerShell or the Microsoft Graph invitation API to reset the user's redemption status and reinvite the user while keeping the user's object ID, group memberships, and app assignments. When the user redeems the new invitation, the UPN of the user doesn't change, but the user's sign-in name changes to the new email. Then the user can sign in using the new email or an email you've added to the `otherMails` property of the user object.
29
+
To manage these scenarios previously, you had to manually delete the guest user’s account from your directory and reinvite the user. Now you can use the Azure portal, PowerShell or the Microsoft Graph invitation API to reset the user's redemption status and reinvite the user while keeping the user's object ID, group memberships, and app assignments. When the user redeems the new invitation, the [UPN](../hybrid/plan-connect-userprincipalname.md#what-is-userprincipalname) of the user doesn't change, but the user's sign-in name changes to the new email. Then the user can sign in using the new email or an email you've added to the `otherMails` property of the user object.
29
30
30
31
## Use the Azure portal to reset redemption status
31
32
@@ -34,17 +35,18 @@ To manage these scenarios previously, you had to manually delete the guest user
34
35
1. Select **Users**.
35
36
1. In the list, select the user's name to open their user profile.
36
37
1. If the user wants to sign in using a different email:
37
-
- Select the **Properties** tab.
38
-
- Select the **Edit** icon next to **Contact information**.
38
+
- Select **Edit properties**.
39
+
- Select the **Contact Information** tab.
39
40
- Next to **Email**, type the new email.
40
41
- Update **Other emails** to also include the new email.
41
42
- Select the **Save** button at the bottom of the page.
42
43
43
-
1. In the **Overview** tab, under **My Feed**, select **B2B collaboration**.
44
-

45
-
1. Under **Redemption status**, next to **Reset invitation status? (Preview)**, select **Yes**.
46
-
1. Select **Yes** to confirm.
44
+
1. On the **Overview** tab, under **My Feed**, select the **Manage (resend invitation / reset status)** link in the **B2B collaboration** tile.
45
+
46
+
:::image type="content" source="media/reset-redemption-status/user-profile-b2b-collaboration.png" alt-text="Screenshot of the guest user's profile overview." lightbox="media/reset-redemption-status/user-profile-b2b-collaboration.png":::
47
47
48
+
1. In the **Manage invitations** pane, under **Redemption status**, set **Reset invitation status? (Preview)** to **Yes**.
49
+
1. Select **Yes** to confirm.
48
50
49
51
## Use PowerShell or Microsoft Graph API to reset redemption status
50
52
@@ -79,7 +81,7 @@ New-MgInvitation `
79
81
80
82
### Use Microsoft Graph API to reset redemption status
81
83
82
-
Using the [Microsoft Graph invitation API](/graph/api/resources/invitation), set the `resetRedemption` property to `true` and specify the new email address in the `invitedUserEmailAddress` property.
84
+
To use the [Microsoft Graph invitation API](/graph/api/resources/invitation), set the `resetRedemption` property to `true` and specify the new email address in the `invitedUserEmailAddress` property.
83
85
84
86
```json
85
87
POST https://graph.microsoft.com/beta/invitations
@@ -112,3 +114,4 @@ ContentType: application/json
112
114
113
115
-[Add Azure Active Directory B2B collaboration users by using PowerShell](customize-invitation-api.md#powershell)
114
116
-[Properties of an Azure AD B2B guest user](user-properties.md)
117
+
-[B2B for Azure AD integrated apps](configure-saas-apps.md)
0 commit comments