@auth0/nextjs-auth0 - v4.22.0
    Preparing search index...

    Interface PasskeyEnrollmentChallengeResponse

    Response from Auth0 after requesting a passkey enrollment challenge. The authenticationMethodId is extracted from the Location response header and is required for the subsequent enrollmentVerify call.

    interface PasskeyEnrollmentChallengeResponse {
        authenticationMethodId: string;
        authnParamsPublicKey: PasskeyCreationOptionsJSON;
        authSession: string;
    }
    Index

    Properties

    authenticationMethodId: string

    ID extracted from the Location header — needed for enrollmentVerify.

    authnParamsPublicKey: PasskeyCreationOptionsJSON

    WebAuthn credential creation options from Auth0. Pass directly to navigator.credentials.create(). Binary fields are Base64URL-encoded strings.

    authSession: string

    Flow state token — must be echoed back in enrollmentVerify.