Identity information associated with a Passkey. An Identity is a unique identifier that may be used by an end-user to gain access governed by Beyond Identity. An Identity is created at the Realm level. An end-user may have multiple identities. A Realm can have many Identities.

interface Identity {
    displayName?: string;
    emailAddress?: string;
    externalId?: string;
    id: string;
    username: string;
}

Properties

displayName?: string
emailAddress?: string
externalId?: string
id: string
username: string