Pinecone TypeScript SDK - v9.0.0
    Preparing search index...

    Type Alias FailedRequestInfo

    Details of an unsuccessful HTTP request, used to construct API errors.

    type FailedRequestInfo = {
        body?: string;
        message?: string;
        status: number;
        url?: string;
    }
    Index
    body?: string

    Response body returned by the server.

    message?: string

    Human-readable server error message.

    status: number

    HTTP response status code.

    url?: string

    URL of the failed request.