Table of Contents

Class InviteUserByEmailOptions

Namespace
Supabase.Gotrue
Assembly
Supabase.Gotrue.dll

A utility class that represents options for sending a User an Invitation

public class InviteUserByEmailOptions
Inheritance
InviteUserByEmailOptions
Inherited Members

Properties

Data

A custom data object to store additional metadata about the user. This maps to the auth.users.user_metadata column.

public Dictionary<string, object>? Data { get; set; }

Property Value

Dictionary<string, object>

RedirectTo

The URL which will be appended to the email link sent to the user's email address. Once clicked the user will end up on this URL.

public string? RedirectTo { get; set; }

Property Value

string