nylas
    Preparing search index...

    Interface for additional settings for the application.

    Write-only on update: these values can be set via PATCH /v3/applications but are stripped from every response, so they are not exposed on ApplicationDetails.

    interface AdditionalSettings {
        allowQueryParamInRedirectUri?: boolean;
        loginUrl?: string;
        logoutUrl?: string;
        refreshTokenExpirationAbsolute?: number;
        refreshTokenExpirationIdle?: number;
        rotateRefreshToken?: boolean;
    }
    Index

    Properties

    allowQueryParamInRedirectUri?: boolean

    Whether to allow query parameters in redirect URIs.

    loginUrl?: string

    Login URL.

    logoutUrl?: string

    Logout URL.

    refreshTokenExpirationAbsolute?: number

    Absolute refresh-token expiration, in seconds.

    refreshTokenExpirationIdle?: number

    Idle refresh-token expiration, in seconds.

    rotateRefreshToken?: boolean

    Whether to rotate the refresh token on use.