Class PasswordlessEmailRequest
- Namespace
- Auth0.AuthenticationApi.Models
- Assembly
- Auth0.AuthenticationApi.dll
Represents a request to start a Passwordless email flow.
public class PasswordlessEmailRequest
- Inheritance
-
PasswordlessEmailRequest
- Inherited Members
Properties
AuthenticationParameters
Additional authentication parameters.
[JsonProperty("authParams")]
public IDictionary<string, object> AuthenticationParameters { get; set; }
Property Value
ClientAssertionSecurityKey
Security Key to use with Client Assertion
public SecurityKey ClientAssertionSecurityKey { get; set; }
Property Value
ClientAssertionSecurityKeyAlgorithm
Algorithm for the Security Key to use with Client Assertion
public string ClientAssertionSecurityKeyAlgorithm { get; set; }
Property Value
ClientId
Client ID of the application.
[JsonProperty("client_id")]
public string ClientId { get; set; }
Property Value
ClientSecret
Client Secret of the application.
[JsonProperty("client_secret")]
public string ClientSecret { get; set; }
Property Value
Email to which the link or code must be sent.
[JsonProperty("email")]
public string Email { get; set; }
Property Value
Type
PasswordlessEmailRequestType of the request.
[JsonProperty("send")]
public PasswordlessEmailRequestType Type { get; set; }