Table of Contents

Class CreateOrganizationRequestContent

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

Properties

Branding

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

Property Value

OrganizationBranding

DisplayName

Friendly name of this organization.

[JsonPropertyName("display_name")]
public string? DisplayName { get; set; }

Property Value

string

EnabledConnections

Connections that will be enabled for this organization. See POST enabled_connections endpoint for the object format. (Max of 10 connections allowed)

[JsonPropertyName("enabled_connections")]
public IEnumerable<ConnectionForOrganization>? EnabledConnections { get; set; }

Property Value

IEnumerable<ConnectionForOrganization>

IsAppEntitlementActive

Whether app entitlement is active for this organization.

[JsonPropertyName("is_app_entitlement_active")]
public bool? IsAppEntitlementActive { get; set; }

Property Value

bool?

Metadata

[JsonPropertyName("metadata")]
public Dictionary<string, string?>? Metadata { get; set; }

Property Value

Dictionary<string, string>

Name

The name of this organization.

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

Property Value

string

ThirdPartyClientAccess

[JsonPropertyName("third_party_client_access")]
public OrganizationThirdPartyClientAccessEnum? ThirdPartyClientAccess { get; set; }

Property Value

OrganizationThirdPartyClientAccessEnum?

TokenQuota

[JsonPropertyName("token_quota")]
public CreateTokenQuota? TokenQuota { get; set; }

Property Value

CreateTokenQuota

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.