Class SelfServiceSsoTicketCreateRequest
- Namespace
- Auth0.ManagementApi.Models.SelfServiceProfiles
- Assembly
- Auth0.ManagementApi.dll
public class SelfServiceSsoTicketCreateRequest
- Inheritance
-
SelfServiceSsoTicketCreateRequest
- Inherited Members
Properties
ConnectionConfig
If provided, this will create a new connection for the SSO flow with the given configuration.
[JsonProperty("connection_config")]
public SelfServiceSsoConnectionConfig ConnectionConfig { get; set; }
Property Value
ConnectionId
If provided, this will allow editing of the provided connection during the SSO Flow
[JsonProperty("connection_id")]
public string ConnectionId { get; set; }
Property Value
EnabledClients
List of client_ids that the connection will be enabled for.
[JsonProperty("enabled_clients")]
public string[] EnabledClients { get; set; }
Property Value
- string[]
EnabledOrganizations
List of organizations that the connection will be enabled for.
[JsonProperty("enabled_organizations")]
public IList<EnabledOrganization> EnabledOrganizations { get; set; }
Property Value
TtlSec
Number of seconds for which the ticket is valid before expiration. If unspecified or set to 0, this value defaults to 432000 seconds (5 days).
[JsonProperty("ttl_sec")]
public int? TtlSec { get; set; }
Property Value
- int?