ping-identity
    Preparing search index...

    Type Alias DeviceKind

    DeviceKind: "oath" | "push" | "bound" | "profile" | "webAuthn"

    Supported device kinds exposed by the native Ping DeviceClient SDKs.

    Order matches the native repository property order on both platforms. Each kind maps 1:1 to a REST endpoint under /json/realms/{realm}/users/{user}/devices/{kind}.

    • 'oath' - OATH (TOTP / HOTP) authenticator app devices.
    • 'push' - Push notification devices.
    • 'bound' - Cryptographically bound devices used for device-binding MFA.
    • 'profile' - Device profile records (non-MFA).
    • 'webAuthn' - FIDO2 / WebAuthn credentials.
    const kind: DeviceKind = 'oath';
    const devices = await client[kind].get();