Request
Body Params application/json
{
"id": "string",
"rawId": "string",
"type": "string",
"webauthn": {
"clientDataJSON": "string",
"authenticatorData": "string",
"signature": "string",
"userHandle": "string"
},
"authenticatorAttachment": "string"
}
Request Code Samples
curl --location 'http://localhost:8080/auth/passkey/login/finish' \
--header 'Content-Type: application/json' \
--data '{
"id": "string",
"rawId": "string",
"type": "string",
"webauthn": {
"clientDataJSON": "string",
"authenticatorData": "string",
"signature": "string",
"userHandle": "string"
},
"authenticatorAttachment": "string"
}'
Responses
{
"code": 0,
"result": {
"accessToken": "string",
"refreshToken": "string",
"expiresAt": "string"
},
"error": "string"
}
Modified at 2026-06-24 16:05:36