nylas
    Preparing search index...

    Interface NylasListResponse<T>

    Interface representation of a Nylas response object that contains a list of objects.

    interface NylasListResponse<T> {
        data: T[];
        flowId?: string;
        headers?: Record<string, string>;
        nextCursor?: string;
        rawHeaders?: Record<string, string>;
        requestId: string;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Properties

    data: T[]

    The list of requested data objects.

    flowId?: string

    The flow ID Provide this to Nylas support to help trace requests and responses

    headers?: Record<string, string>

    The response headers with camelCased keys (backwards compatible)

    Use rawHeaders instead

    nextCursor?: string

    The cursor to use to get the next page of data.

    rawHeaders?: Record<string, string>

    The raw response headers with original dashed lowercase keys

    requestId: string

    The request ID.