Challenges
Verify authentication
Unified endpoint for verifying authentication using either OTP or passkey.
The request body must include a method field to specify the authentication type:
- OTP: Include challengeId and code to verify a one-time passcode
- Passkey: Include assertion to verify a WebAuthn credential
Upon successful verification, returns access and refresh tokens.
POST
Verify authentication
Body
application/json
- Option 1
- Option 2
Unified verification request for both OTP and passkey authentication.
Use the method field to specify which authentication method is being verified:
- For OTP: Include challengeId and code
- For passkey: Include assertion
Response
Ok. The operation succeeded.
The JSON representation of issued authentication tokens as the result of a successful authentication challenge or the exchange of a refresh token.
Previous
List supported passkey algorithmsList the cryptographic algorithms supported for passkey credentials.
Returns the available COSE algorithm identifiers that can be used when
creating passkeys. Client SDKs should map these human-readable values
to their corresponding COSE numeric identifiers when calling the WebAuthn API.
Next
Verify authentication