rozod
    Preparing search index...

    Variable postPasswordsResetConst Api Param Description

    postPasswordsReset: EndpointGeneric<
        {},
        {
            accountBlob: string;
            identityVerificationLoginTicket: string;
            isBanned: boolean;
            passkeyRegistrationSucceeded: boolean;
            recoveryEmail: string;
            shouldAutoLoginFromRecovery: boolean;
            shouldPrompt2svRemoval: boolean;
            shouldPromptPasskeyAddition: boolean;
            shouldUpdateEmail: boolean;
            twoStepVerificationData: {
                mediaType: | "Email"
                | "SMS"
                | "Authenticator"
                | "RecoveryCode"
                | "SecurityKey"
                | "CrossDevice"
                | "Password"
                | "Passkey";
                ticket: string;
            };
            user: { displayName: string; id: number; name: string };
        },
        {
            accountBlob: string;
            newEmail: string;
            passkeyRegistrationResponse: string;
            passkeySessionId: string;
            password: string;
            passwordRepeated: string;
            secureAuthenticationIntent: {
                clientEpochTimestamp: number;
                clientPublicKey: string;
                saiSignature: string;
                serverNonce: string;
            };
            targetType: "Email"
            | "PhoneNumber"
            | "RecoverySessionID";
            ticket: string;
            twoStepVerificationChallengeId: string;
            twoStepVerificationToken: string;
            userId: number;
        },
    > = ...

    POST https://auth.roblox.com/v2/passwords/reset Resets a password for a user that belongs to the password reset ticket. body The request model including the target type, ticket, user id, and new password, Roblox.Authentication.Api.Models.PasswordResetModel This will log the user out of all sessions and re-authenticate.