rozod
    Preparing search index...

    Variable postPasswordsResetConst Api Param Description

    postPasswordsReset: EndpointGeneric<
        {},
        {
            accountBlob: string;
            identityVerificationLoginTicket: string;
            isBanned: boolean;
            passkeyRegistrationSucceeded: boolean;
            recoveryEmail: string;
            shouldUpdateEmail: boolean;
            twoStepVerificationData: {
                mediaType: 0
                | 1
                | 2
                | 3
                | 4
                | 5
                | 6
                | 7;
                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: 0
            | 1
            | 2;
            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.