WebAuthn.removeCredentialRemoves a credential from the authenticator.
| Name | Type | Description |
|---|---|---|
authenticatorId | AuthenticatorId | |
credentialId | string |
{
"id": 1,
"method": "WebAuthn.removeCredential",
"params": {
"authenticatorId": "authenticatorId-value",
"credentialId": "credentialId-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('WebAuthn.removeCredential', {"authenticatorId": "authenticatorId-value", "credentialId": "credentialId-value"});
console.log(result);