ping-identity
    Preparing search index...

    Interface BoundDevice

    Cryptographically bound device used for device-binding MFA.

    Extends DeviceBase with an additional deviceId that identifies the physical device assigned during the binding ceremony.

    interface BoundDevice {
        createdDate: number;
        deviceId: 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.

    deviceId: string

    Physical device identifier assigned at binding time.

    Distinct from DeviceBase.id (the server record id) and DeviceBase.uuid (the platform UUID). This value is set by the native SDK during the device-binding ceremony and cannot be changed.

    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.