Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

IdentitytoolkitRelyingpartySignupNewUserRequest

import type { IdentitytoolkitRelyingpartySignupNewUserRequest } from "https://googleapis.deno.dev/v1/identitytoolkit:v3.ts";

Request to signup new user, create anonymous user or anonymous user reauth.

interface IdentitytoolkitRelyingpartySignupNewUserRequest {
captchaChallenge?: string;
captchaResponse?: string;
disabled?: boolean;
displayName?: string;
email?: string;
emailVerified?: boolean;
idToken?: string;
instanceId?: string;
localId?: string;
password?: string;
phoneNumber?: string;
photoUrl?: string;
tenantId?: string;
tenantProjectNumber?: bigint;
}

§Properties

§
captchaChallenge?: string
[src]

The captcha challenge.

§
captchaResponse?: string
[src]

Response to the captcha.

§
disabled?: boolean
[src]

Whether to disable the user. Only can be used by service account.

§
displayName?: string
[src]

The name of the user.

§
email?: string
[src]

The email of the user.

§
emailVerified?: boolean
[src]

Mark the email as verified or not. Only can be used by service account.

§
idToken?: string
[src]

The GITKit token of the authenticated user.

§
instanceId?: string
[src]

Instance id token of the app.

§
localId?: string
[src]

Privileged caller can create user with specified user id.

§
password?: string
[src]

The new password of the user.

§
phoneNumber?: string
[src]

Privileged caller can create user with specified phone number.

§
photoUrl?: string
[src]

The photo url of the user.

§
tenantId?: string
[src]

For multi-tenant use cases, in order to construct sign-in URL with the correct IDP parameters, Firebear needs to know which Tenant to retrieve IDP configs from.

§
tenantProjectNumber?: bigint
[src]

Tenant project number to be used for idp discovery.