Authenticating with API

User authentication with Passkeys is split into 2 functions / API requests Initiate Authenticationand Complete Authentication

The initiateAuthentication method is used to start the authentication process for a user within a specific application or developer scope. It prepares the necessary authentication challenge and returns it to the client.

The completeAuthentication method is used to finalize the user authentication process. It takes encrypted user data and a challenge, verifies it, and returns a response that includes a session jwt token if the authentication is successful.

Last updated