Class CustomDomainCreateRequest
- Namespace
- Auth0.ManagementApi.Models
- Assembly
- Auth0.ManagementApi.dll
Represents a request to create a new custom domain.
public class CustomDomainCreateRequest
- Inheritance
-
CustomDomainCreateRequest
- Inherited Members
Properties
CustomClientIpHeader
Possible values: [true-client-ip, cf-connecting-ip, x-forwarded-for, x-azure-clientip, null] HTTP header to fetch client IP header. Ex: CF-Connecting-IP, X-Forwarded-For or True-Client-IP.
[JsonProperty("custom_client_ip_header")]
public string CustomClientIpHeader { get; set; }
Property Value
Domain
The custom domain.
[JsonProperty("domain")]
public string Domain { get; set; }
Property Value
TlsPolicy
Possible values: [recommended, compatible] recommended includes TLS 1.2
[JsonProperty("tls_policy")]
public string TlsPolicy { get; set; }
Property Value
Type
The custom domain provisioning type.
[JsonProperty("type")]
[JsonConverter(typeof(StringEnumConverter))]
public CustomDomainCertificateProvisioning Type { get; set; }
Property Value
VerificationMethod
The custom domain verification method.
[JsonProperty("verification_method")]
public string VerificationMethod { get; set; }