listWebAuthnDevices
client.listWebAuthnDevices(accessToken: string)
About this command
When authenticated, the user can list the registred FIDO2 devices.
|
Examples
client
.listWebAuthnDevices('eyJ0eXAiOiJKV1QiL...')
.then(deviceCredentials => {
// Display the list of device credentials
})
.catch(err => console.error(err))
Parameters
The authorization credential JSON Web Token (JWT) used to access the ReachFive API, less than five minutes old. |
Response
Type: Promise<DeviceCredential[]>
DeviceCredential
friendlyName |
The name of the FIDO2 device. |
||
id |
The identifier of the FIDO2 device. |
||
createdAt |
The date and time when the passkey was created. |
||
lastUsedAt |
The date and time when the passkey was last used. |
||
aaguid |
The Authenticator Attestation Globally Unique Identifier, a unique number that identifies the model of the authenticator.
|