WebAuthn.removeVirtualAuthenticatorRemoves the given authenticator.
| Name | Type | Description |
|---|---|---|
authenticatorId | AuthenticatorId |
{
"id": 1,
"method": "WebAuthn.removeVirtualAuthenticator",
"params": {
"authenticatorId": "authenticatorId-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('WebAuthn.removeVirtualAuthenticator', {"authenticatorId": "authenticatorId-value"});
console.log(result);