Verify Magic Link for Passwordless Authentication#
This endpoint makes an HTTP GET request to verify a magic link for passwordless authentication. The request should include the client_id, state, and magictext as query parameters.
The response will include the authentication status and any relevant authentication details.
Request
Query Params
client_id
stringÂ
required
This identifies the application making the request to the SSOJET server. You can find your client ID on the API Keys page in the dashboard
Example:
string
state
stringÂ
required
The state parameter is used to track the status of a user authencation in the REST API. It helps in maintaining the user authencation context and monitoring its progress throughout the request lifecycle
Example:
string
magictext
stringÂ
required
The magic text is a unique code sent to the user's email as part of the magic link authentication process. This text ensures secure and seamless login by verifying the user's identity when they click the link.