nylas
    Preparing search index...

    Interface ListThreadsQueryParams

    Interface representing the query parameters for listing drafts.

    interface ListThreadsQueryParams {
        anyEmail?: string[];
        bcc?: string[];
        cc?: string[];
        from?: string[];
        hasAttachment?: boolean;
        in?: string[];
        latestMessageAfter?: number;
        latestMessageBefore?: number;
        limit?: number;
        pageToken?: string;
        searchQueryNative?: string;
        select?: string;
        starred?: boolean;
        subject?: string;
        to?: string[];
        unread?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    anyEmail?: string[]

    Return threads that contain messages that have been sent or received from this list of email addresses.

    bcc?: string[]

    Return threads containing messages bcc'd on these email address.

    cc?: string[]

    Return threads containing messages cc'd on these email address.

    from?: string[]

    Return threads containing messages sent from these email address.

    hasAttachment?: boolean

    Return threads with messages that contain attachments.

    in?: string[]

    Return threads with messages that belong to these specified folder IDs.

    latestMessageAfter?: number

    Return threads whose most recent message was received after this Unix timestamp.

    latestMessageBefore?: number

    Return threads whose most recent message was received before this Unix timestamp.

    limit?: number

    The maximum number of objects to return. This field defaults to 50. The maximum allowed value is 200.

    pageToken?: string

    An identifier that specifies which page of data to return. This value should be taken from the [ListResponse.nextCursor] response field.

    searchQueryNative?: string

    The provider-specific query string used to search threads. Available for Google only.

    select?: string

    Specify fields that you want Nylas to return as a comma-separated list (for example, select=id,updated_at). This allows you to receive only the portion of object data that you're interested in.

    starred?: boolean

    Return threads with starred messages.

    subject?: string

    Return items with a matching literal subject.

    to?: string[]

    Return threads containing messages sent to these email address.

    unread?: boolean

    Return threads with unread messages.