Table of Contents

Class CreateTokenExchangeProfileRequestContent

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
[Serializable]
public record CreateTokenExchangeProfileRequestContent : IEquatable<CreateTokenExchangeProfileRequestContent>
Inheritance
CreateTokenExchangeProfileRequestContent
Implements
Inherited Members
Extension Methods

Properties

ActionId

The ID of the Custom Token Exchange action to execute for this profile, in order to validate the subject_token. The action must use the custom-token-exchange trigger.

[JsonPropertyName("action_id")]
public required string ActionId { get; set; }

Property Value

string

Name

Friendly name of this profile.

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

Property Value

string

SubjectTokenType

Subject token type for this profile. When receiving a token exchange request on the Authentication API, the corresponding token exchange profile with a matching subject_token_type will be executed. This must be a URI.

[JsonPropertyName("subject_token_type")]
public required string SubjectTokenType { get; set; }

Property Value

string

Type

[JsonPropertyName("type")]
public required TokenExchangeProfileTypeEnum Type { get; set; }

Property Value

TokenExchangeProfileTypeEnum

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.