Skip to content

Request User Verification

If you want your White Label users to verify their provided emails, use the following example to request it.

Prerequisites

Request Verification

// Remember to use the LootLocker namespace in the top of your file.
using LootLocker.Requests;
// This code should be placed in a handler when the user verifies their email.
int userId = 1234;
LootLockerSDKManager.WhiteLabelRequestVerification(userId, (response) =>
{
if (!response.success)
{
Debug.Log("error requesting account verification");
return;
}
Debug.Log("account verification requested successfully");
});

Conclusion

You've requested verification for a White Label user. Next, learn how to handle returning users.