QuickBase JS SDK v2 - v2.2.2
    Preparing search index...

    Interface UpdateAppRequest

    interface UpdateAppRequest {
        description?: string;
        name?: string;
        securityProperties?: {
            allowClone?: boolean;
            allowExport?: boolean;
            enableAppTokens?: boolean;
            hideFromPublic?: boolean;
            mustBeRealmApproved?: boolean;
            useIPFilter?: boolean;
        };
        variables?: { name: string; value: string }[];
    }
    Index

    Properties

    description?: string

    The description for the app.

    name?: string

    The name for the app.

    securityProperties?: {
        allowClone?: boolean;
        allowExport?: boolean;
        enableAppTokens?: boolean;
        hideFromPublic?: boolean;
        mustBeRealmApproved?: boolean;
        useIPFilter?: boolean;
    }

    Security properties of the application

    Type Declaration

    • OptionalallowClone?: boolean

      Allow users who are not administrators to copy

    • OptionalallowExport?: boolean

      Allow users who are not administrators to export data

    • OptionalenableAppTokens?: boolean

      Require Application Tokens

    • OptionalhideFromPublic?: boolean

      Hide from public application searches

    • OptionalmustBeRealmApproved?: boolean

      Only "approved" users may access this application

    • OptionaluseIPFilter?: boolean

      Only users logging in from "approved" IP addresses may access this application

    variables?: { name: string; value: string }[]

    The app variables. A maximum of 10 variables can be updated at a time. See About Application Variables

    Type Declaration

    • name: string

      The name for the variable.

    • value: string

      The value for the variable.