ping-identity
    Preparing search index...

    Interface WebAuthnDevice

    FIDO2 / WebAuthn credential.

    Extends DeviceBase with a credentialId that uniquely identifies the WebAuthn credential on the relying party.

    interface WebAuthnDevice {
        createdDate: number;
        credentialId: string;
        deviceName: string;
        id: string;
        lastAccessDate: number;
        uuid: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    createdDate: number

    Timestamp (milliseconds since epoch) when the device was first registered.

    credentialId: string

    Base64url-encoded credential identifier returned by the authenticator during the WebAuthn registration ceremony.

    deviceName: string

    User-visible display name of the device. This is the only writable field via update.

    id: string

    Server-assigned unique identifier for the device record.

    lastAccessDate: number

    Timestamp (milliseconds since epoch) of the most recent authentication or access event.

    uuid: string

    Platform UUID of the physical device.