ping-identity
    Preparing search index...

    Type Alias JourneyFidoAuthenticationCallback

    JourneyFidoAuthenticationCallback: JourneyCallbackBase & {
        type: "FidoAuthenticationCallback";
        value?: Record<string, unknown>;
    }

    FidoAuthenticationCallback payload with typed named fields.

    Type Declaration

    • type: "FidoAuthenticationCallback"
    • Optionalvalue?: Record<string, unknown>

      WebAuthn assertion options.

      iOS only — present when the callback originates from a MetadataCallback-backed FIDO authentication flow. Always undefined on Android.

    The value field is present on iOS only, for MetadataCallback-backed FIDO authentication flows where the native iOS bridge aliases the MetadataCallback type to "FidoAuthenticationCallback" when _action is "webauthn_authentication" and emits the full WebAuthn assertion options as value.

    On Android, MetadataCallback-backed FIDO flows are not aliased — they surface as type: "MetadataCallback" with value set directly on that callback. value is therefore always undefined on Android for this type.