C#: Unlink an identity from a user
Unlinks an identity from the signed-in user.
- Requires a signed-in user with more than one linked identity.
- Once unlinked, the user can no longer sign in with that identity.
- Retrieve the user's identities from
supabase.Auth.CurrentUser.Identities.
Examples
Unlink an identity
var identity = supabase.Auth.CurrentUser.Identities.First();
await supabase.Auth.UnlinkIdentity(identity);