Request User 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");
});Last updated
Was this helpful?

