Get passkey metadata
Deprecated
GET
/passkey
const url = 'https://web.exactly.app/api/passkey';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://web.exactly.app/api/passkeyResponses
Section titled “Responses”Passkey metadata
Media typeapplication/json
WebAuthn passkey metadata
object
credentialId
required
Base64URL encoded credential identifier
string
factory
required
Account factory address
string
x
required
Credential public key x coordinate
y
required
Credential public key y coordinate
salt
Credential salt
string
Examplegenerated
{ "credentialId": "example", "factory": "example", "x": "example", "y": "example", "salt": "example"}