nylas
    Preparing search index...

    Interface for a Nylas application details object

    interface ApplicationDetails {
        applicationId: string;
        blocked?: boolean;
        branding: Branding;
        callbackUris?: RedirectUri[];
        createdAt?: number;
        domain?: string;
        environment: string;
        hostedAuthentication?: HostedAuthentication;
        idpSettings?: IdpSettings;
        organizationId: string;
        region: string;
        updatedAt?: number;
    }
    Index

    Properties

    applicationId: string

    Public Application ID

    blocked?: boolean

    Whether the application is blocked. Omitted when empty.

    branding: Branding

    Branding details for the application

    callbackUris?: RedirectUri[]

    List of callback (redirect) URIs.

    Read-only on the application object; manage entries via the dedicated redirect-uris endpoints (Nylas.applications.redirectUris).

    createdAt?: number

    Unix timestamp (seconds) when the application was created. Omitted when empty.

    domain?: string

    White-label domain. Omitted when empty.

    environment: string

    Environment identifier (e.g. sandbox). Free-form string, not a closed enum.

    hostedAuthentication?: HostedAuthentication

    Hosted authentication branding details

    idpSettings?: IdpSettings

    Identity provider (IdP) settings for the application

    organizationId: string

    ID of organization

    region: string

    Region identifier (e.g. us, eu). Free-form string, not a closed enum.

    updatedAt?: number

    Unix timestamp (seconds) when the application was last updated. Omitted when empty.