Table of Contents

Class GatewayAuthentication

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

Token-based authentication settings to be applied when connection is using an sms strategy.

public class GatewayAuthentication
Inheritance
GatewayAuthentication
Inherited Members

Properties

Audience

The audience to be added to the JWT payload.

[JsonProperty("audience")]
public string Audience { get; set; }

Property Value

string

Method

The Authorization header type.

[JsonProperty("method")]
public string Method { get; set; }

Property Value

string

Secret

The secret to be used for signing tokens.

[JsonProperty("secret")]
public string Secret { get; set; }

Property Value

string

SecretBase64Encoded

Set to true if the provided secret is base64 encoded.

[JsonProperty("secret_base64_encoded")]
public bool? SecretBase64Encoded { get; set; }

Property Value

bool?

Subject

The subject to be added to the JWT payload.

[JsonProperty("subject")]
public string Subject { get; set; }

Property Value

string