Resend Magic Link for Passwordless Authentication#
This endpoint is used to resend a magic link for passwordless authentication. The HTTP POST request should be made to https://api.ssojet.com/api/v1/auth/passwordless/magic-link/resend with the client_id included as a query parameter. The request body should be in raw format and include the state parameter.
500 Internal Server Error: An error occurred while processing the request.
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
Header Params
Content-Type
string
required
Example:
application/json
User-Agent
string
required
Example:
SSOJET API
Body Params application/json
state
string
required
Example
{"state":"{The state parameter is used to track the status of a user authencation in the REST API. You will receive this parameter value in the email magic link API response.}"}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request POST 'https://api.ssojet.com/api/v1/auth/passwordless/magic-link/resend?client_id=string&client_id=' \
--header'User-Agent: SSOjet/1.0.0 (https://ssojet.com)' \
--header'Content-Type: application/json' \
--data-raw'{
"state": "{The state parameter is used to track the status of a user authencation in the REST API. You will receive this parameter value in the email magic link API response.}"
}'