@videosdk.live/server-sdk
    Preparing search index...

    Interface VideoSDKErrorContext

    Context describing the request/response that produced an error.

    interface VideoSDKErrorContext {
        cause?: unknown;
        code?: string;
        details?: unknown;
        httpStatus?: number;
        method?: string;
        path?: string;
        requestId?: string;
    }
    Index
    cause?: unknown

    Underlying error (network failure, abort, etc.).

    code?: string

    Machine-readable error code returned by the API (when present).

    details?: unknown

    Raw parsed error body for advanced inspection.

    httpStatus?: number

    HTTP status code, if the error came from a response.

    method?: string

    HTTP method of the failing request.

    path?: string

    Path of the failing request.

    requestId?: string

    Server request id (from a response header), for support/debugging.