Table of Contents

Class CreateSelfServiceProfileRequestContent

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

Properties

AllowedStrategies

List of IdP strategies that will be shown to users during the Self-Service SSO flow. Possible values: [oidc, samlp, waad, google-apps, adfs, okta, auth0-samlp, okta-samlp, keycloak-samlp, pingfederate]

[JsonPropertyName("allowed_strategies")]
public IEnumerable<SelfServiceProfileAllowedStrategyEnum>? AllowedStrategies { get; set; }

Property Value

IEnumerable<SelfServiceProfileAllowedStrategyEnum>

Branding

[JsonPropertyName("branding")]
public SelfServiceProfileBrandingProperties? Branding { get; set; }

Property Value

SelfServiceProfileBrandingProperties

Description

The description of the self-service Profile.

[JsonPropertyName("description")]
public string? Description { get; set; }

Property Value

string

Name

The name of the self-service Profile.

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

Property Value

string

UserAttributeProfileId

ID of the user-attribute-profile to associate with this self-service profile.

[JsonPropertyName("user_attribute_profile_id")]
public string? UserAttributeProfileId { get; set; }

Property Value

string

UserAttributes

List of attributes to be mapped that will be shown to the user during the SS-SSO flow.

[JsonPropertyName("user_attributes")]
public IEnumerable<SelfServiceProfileUserAttribute>? UserAttributes { get; set; }

Property Value

IEnumerable<SelfServiceProfileUserAttribute>

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.