Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface CreateOrganizationRequestContent

    {
    * name: "name"
    * }
    interface CreateOrganizationRequestContent {
        name: string;
        display_name?: string;
        branding?: OrganizationBranding;
        metadata?: OrganizationMetadata;
        enabled_connections?: ConnectionForOrganization[];
        token_quota?: CreateTokenQuota;
    }
    Index

    Properties

    name: string

    The name of this organization.

    display_name?: string

    Friendly name of this organization.

    enabled_connections?: ConnectionForOrganization[]

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

    token_quota?: CreateTokenQuota