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

    Interface PasskeyEnrollmentVerifyResponse

    A registered passkey authentication method on the user's account. Returned by enrollmentVerify on success. Field names match the Auth0 MyAccount API wire format (snake_case).

    interface PasskeyEnrollmentVerifyResponse {
        aaguid?: string;
        created_at?: string;
        credential_backed_up?: boolean;
        credential_device_type?: string;
        id: string;
        identity_user_id?: string;
        key_id?: string;
        public_key?: string;
        relying_party_id?: string;
        transports?: string[];
        type: "passkey";
        usage?: string[];
        user_agent?: string;
        user_handle?: string;
    }
    Index

    Properties

    aaguid?: string

    AAGUID of the authenticator.

    created_at?: string

    ISO 8601 timestamp when the passkey was created.

    credential_backed_up?: boolean

    Whether the credential is backed up to the cloud.

    credential_device_type?: string

    Whether the credential is a multi-device credential.

    id: string

    Authentication method ID.

    identity_user_id?: string

    The user identity this passkey belongs to.

    key_id?: string

    Credential key ID.

    public_key?: string

    Base64url-encoded public key.

    relying_party_id?: string

    Relying party ID (your Auth0 custom domain).

    transports?: string[]

    Authenticator transports (e.g. "internal", "hybrid").

    type: "passkey"

    Method type — always "passkey" for passkey methods.

    usage?: string[]

    Supported usage modes (e.g. "mfa", "passwordless").

    user_agent?: string

    User agent of the device that enrolled the passkey.

    user_handle?: string

    Base64url-encoded user handle.