Table of Contents

Class CreateTlsClientAuthCredentials

Namespace
Auth0.ManagementApi.Models
Assembly
Auth0.ManagementApi.dll

Structure for creating a new client credential using TLS Client Auth.

public class CreateTlsClientAuthCredentials
Inheritance
CreateTlsClientAuthCredentials
Inherited Members

Properties

CredentialType

Possible values: [cert_subject_dn]

[JsonProperty("credential_type")]
public string CredentialType { get; set; }

Property Value

string

Name

The name of the credential

[JsonProperty("name")]
public string Name { get; set; }

Property Value

string

Pem

PEM-formatted X509 certificate. Must be JSON escaped. Mutually exclusive with subject_dn property.

[JsonProperty("pem")]
public string Pem { get; set; }

Property Value

string

SubjectDistinguishedName

Subject Distinguished Name. Mutually exclusive with pem property.

[JsonProperty("subject_dn")]
public string SubjectDistinguishedName { get; set; }

Property Value

string