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

    Interface CreateAppRequest

    Create an app

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

    Properties

    assignToken?: boolean

    Set to true if you would like to assign the app to the user token you used to create the application. The default is false.

    description?: string

    The description for the app. If this property is left out, the app description will be blank.

    name: string

    The app name. You are allowed to create multiple apps with the same name, in the same realm, because they will have different dbid values. We urge you to be careful about doing this.

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

    Application security properties.

    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 inserted at a time. See About Application Variables

    Type Declaration

    • name: string

      The name for the variable.

    • value: string

      The value for the variable.