nylas
    Preparing search index...

    Interface NylasBaseResponse

    Interface representing a base response to a request.

    interface NylasBaseResponse {
        flowId?: string;
        headers?: Record<string, string>;
        rawHeaders?: Record<string, string>;
        requestId: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    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

    rawHeaders?: Record<string, string>

    The raw response headers with original dashed lowercase keys

    requestId: string