interface AccountCreateParams {
    appSource?: string;
    email: string;
    password: string;
    referralCode?: string;
    subscribe: boolean;
    turnstileToken: string;
    username: string;
}

Properties

appSource?: string

Optional client app/source label for signup attribution. Defaults to the SogniClient connection appSource when configured.

email: string
password: string
referralCode?: string
subscribe: boolean
turnstileToken: string
username: string