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

    Interface Integration

    Integration defines a self contained functioning unit which partners publish. A partner may create one or many of these integrations.

    interface Integration {
        id?: string;
        catalog_id?: string;
        url_slug?: string;
        partner_id?: string;
        name?: string;
        description?: string;
        short_description?: string;
        logo?: string;
        feature_type?: Management.IntegrationFeatureTypeEnum;
        terms_of_use_url?: string;
        privacy_policy_url?: string;
        public_support_link?: string;
        current_release?: IntegrationRelease;
        created_at?: string;
        updated_at?: string;
    }
    Index

    Properties

    id?: string

    id is a system generated GUID. This same ID is designed to be federated in all the applicable localities.

    catalog_id?: string

    catalog_id refers to the ID in the marketplace catalog

    url_slug?: string

    url_slug refers to the url_slug in the marketplace catalog

    partner_id?: string

    partner_id is the foreign key reference to the partner account this integration belongs to.

    name?: string

    name is the integration name, which will be used for display purposes in the marketplace.

    To start we're going to make sure the display name is at least 3 characters. Can adjust this easily later.

    description?: string

    description adds more text for the integration name -- also relevant for the marketplace listing.

    short_description?: string

    short_description is the brief description of the integration, which is used for display purposes in cards

    logo?: string
    terms_of_use_url?: string
    privacy_policy_url?: string
    public_support_link?: string
    current_release?: IntegrationRelease
    created_at?: string
    updated_at?: string