Finish passkey login
POST
/api/auth/passkey/login/finish
const url = 'https://hitkeep.com/api/auth/passkey/login/finish';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"challenge_token":"example","credential":{},"remember_me":true}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://hitkeep.com/api/auth/passkey/login/finish \ --header 'Content-Type: application/json' \ --data '{ "challenge_token": "example", "credential": {}, "remember_me": true }'Verifies passkey assertion and issues session.
Request Body required
Section titled “Request Body required ” Media type application/json
object
challenge_token
required
string
credential
required
object
key
additional properties
any
remember_me
boolean
Example generated
{ "challenge_token": "example", "credential": {}, "remember_me": true}Responses
Section titled “ Responses ”Status
Media type application/json
object
message
string
status
string
Example generated
{ "message": "example", "status": "example"}