WebAuthn.clearCredentialsClears all the credentials from the specified device.
| Name | Type | Description |
|---|---|---|
authenticatorId | AuthenticatorId |
{
"id": 1,
"method": "WebAuthn.clearCredentials",
"params": {
"authenticatorId": "authenticatorId-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('WebAuthn.clearCredentials', {"authenticatorId": "authenticatorId-value"});
console.log(result);