← Back to WebAuthn domain

WebAuthn.removeVirtualAuthenticator

Removes the given authenticator.

Domain: WebAuthn experimental

Parameters

NameTypeDescription
authenticatorIdAuthenticatorId

Example Request

{
  "id": 1,
  "method": "WebAuthn.removeVirtualAuthenticator",
  "params": {
    "authenticatorId": "authenticatorId-value"
  }
}

Example Response

{
  "id": 1,
  "result": {}
}

Usage in Node.js

const result = await send('WebAuthn.removeVirtualAuthenticator', {"authenticatorId": "authenticatorId-value"});
console.log(result);