nylas
    Preparing search index...

    Interface ListNotetakersQueryParams

    Interface representing the query parameters for listing notetakers.

    interface ListNotetakersQueryParams {
        joinTimeEnd?: number;
        joinTimeStart?: number;
        limit?: number;
        orderBy?: "name" | "join_time" | "created_at";
        orderDirection?: "desc" | "asc";
        pageToken?: string;
        prevPageToken?: string;
        select?: string;
        state?: NotetakerState;
    }

    Hierarchy (View Summary)

    Index

    Properties

    joinTimeEnd?: number

    Filter for Notetaker bots that have join times that end at or are before a specific time, in Unix timestamp format.

    joinTimeStart?: number

    Filter for Notetaker bots that have join times that start at or after a specific time, in Unix timestamp format.

    limit?: number

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

    orderBy?: "name" | "join_time" | "created_at"

    The field to order the Notetaker bots by.

    created_at
    
    orderDirection?: "desc" | "asc"

    The direction to order the Notetaker bots by.

    asc
    
    pageToken?: string

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

    prevPageToken?: string

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

    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.

    Filter for Notetaker bots with the specified meeting state.