@seamapi/http - v2.27.0
    Preparing search index...

    Type Alias WorkspacesCreateParameters

    type WorkspacesCreateParameters = {
        company_name?: string;
        connect_partner_name?: string | null;
        connect_webview_customization?: {
            logo_shape?: "circle" | "square" | null;
            primary_button_color?: string | null;
            primary_button_text_color?: string | null;
            success_message?: string | null;
        };
        is_sandbox?: boolean;
        name: string;
        organization_id?: string;
        webview_logo_shape?: "circle"
        | "square";
        webview_primary_button_color?: string;
        webview_primary_button_text_color?: string;
        webview_success_message?: string;
    }
    Index
    company_name?: string

    Company name for the new workspace.

    Use connect_partner_name instead.

    connect_partner_name?: string | null

    Connect partner name for the new workspace.

    connect_webview_customization?: {
        logo_shape?: "circle" | "square" | null;
        primary_button_color?: string | null;
        primary_button_text_color?: string | null;
        success_message?: string | null;
    }

    Connect Webview customizations for the new workspace. See also Customize the Look and Feel of Your Connect Webviews.

    Type Declaration

    is_sandbox?: boolean

    Indicates whether the new workspace is a sandbox workspace.

    name: string

    Name of the new workspace.

    organization_id?: string

    ID of the organization to associate with the new workspace. If omitted, the new workspace is associated with the organization that you administer, if you administer exactly one. If you administer no organization, Seam creates one for you and associates the new workspace with it.

    webview_logo_shape?: "circle" | "square"

    Use connect_webview_customization.webview_logo_shape instead.

    webview_primary_button_color?: string

    Use connect_webview_customization.webview_primary_button_color instead.

    webview_primary_button_text_color?: string

    Use connect_webview_customization.webview_primary_button_text_color instead.

    webview_success_message?: string

    Use connect_webview_customization.webview_success_message instead.