API Core - v1.5.0
    Preparing search index...

    Interface HttpErrorRequestConfig

    Snapshot of the request that triggered an HttpError. Any value naming a secret — header, body field or query parameter — reads as ******.

    interface HttpErrorRequestConfig {
        data?: unknown;
        headers?: Record<string, string>;
        method?: string;
        params?: Record<string, unknown>;
        url?: string;
    }
    Index
    data?: unknown
    headers?: Record<string, string>
    method?: string
    params?: Record<string, unknown>
    url?: string