magic_link), the passwordless authentication email contains a redirect URL like:https://your-frontend.com/?token=<magic-link-token>&ejento_access_token=<ejento-token>&x=1token query parameter value - this is your magic link token to validate.token (string): The magic link token extracted from the email URLsuccess: true/false) with a descriptive message.curl --location -g --request POST 'https:///auth-service/api/v2/users/validate-magic-link' \
--header 'Content-Type: application/json' \
--data-raw '{
"token": "string"
}'{
"success": true,
"message": "Magic link validated successfully",
"data": {
"message": "Magic link validated successfully"
}
}