featherbit UI
    Preparing search index...

    Interface ContextSnapshot

    Redacted point-in-time view of the gateway Context.

    interface ContextSnapshot {
        errors: { code: string; message: string; node_id: string }[];
        message: Record<string, unknown>;
        request: {
            body: BodyCapture;
            headers: Record<string, string[]>;
            host: string;
            method: string;
            path: string;
            query_params: Record<string, string[]>;
            scheme: string;
        };
        response: {
            body: BodyCapture;
            headers: Record<string, string[]>;
            status_code: number;
        };
    }
    Index
    errors: { code: string; message: string; node_id: string }[]
    message: Record<string, unknown>
    request: {
        body: BodyCapture;
        headers: Record<string, string[]>;
        host: string;
        method: string;
        path: string;
        query_params: Record<string, string[]>;
        scheme: string;
    }
    response: {
        body: BodyCapture;
        headers: Record<string, string[]>;
        status_code: number;
    }