You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<td>The integrated system's user's unique Id which will allow to log in the user upon successful authentication</td>
201
+
<td>The integrated system's username, which will allow to log in the user upon successful authentication and match the user to a Rublon account.</td>
204
202
</tr>
205
203
<tr>
206
-
<td><code>userEmail</code></td><td>String</td>
207
-
<td>The user's email address in the integrated system which will allow to check the user's protection status and match the user to a Rublon account</td>
204
+
<td><code>UserEmail</code></td><td>String</td>
205
+
<td>The user's email address. This is a optional parameter and can be empty. If set the email addresss will be set in Rublon for the given username</td>
/// Initializes the Rublon 2-factor authentication transaction.
17
+
/// Returns the URL to which browser should be redirected in order to continue authentication process for the started transaction.
18
+
/// The URL will redirect to the so called Rublon prompt.
19
+
/// If something will fail the method will throw exception which inherits from RublonException.
20
+
/// When authentication process is finished in Rublon prompt the process will redirect to authenticationParameters.callbackUrl
21
+
/// with access token and <see cref="GetCredentials(string)"/> can be called to finish authentication.
22
+
/// Instead of get credentials you can also use <see cref="RublonCallback"/> which contains already some logic related to getting access token parameter.
23
+
/// </summary>
24
+
/// <param name="authenticationParameters">authentication parameters for the user</param>
25
+
/// <returns>web URI to Rublon prompt for the created transaction</returns>
0 commit comments