nylas
    Preparing search index...

    Interface ListImportEventQueryParams

    Interface representing the query parameters for importing events.

    interface ListImportEventQueryParams {
        calendarId: string;
        end?: number;
        limit?: number;
        pageToken?: string;
        select?: string;
        start?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    calendarId: string

    (Required) Calendar ID to import events from. "primary" is a supported value indicating the user's primary calendar. Note: "primary" is not supported for iCloud.

    end?: number

    Filter for events that end at or before the specified time, in Unix timestamp format. Defaults to one month from the time of the request.

    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.

    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.

    start?: number

    Filter for events that start at or after the specified time, in Unix timestamp format. Defaults to the time of the request.