PowerKeys Scripting API
    Preparing search index...

    Interface HttpUploadFileResponse

    Response from HTTP.UploadFile.

    interface HttpUploadFileResponse {
        statusCode: number;
        headers: HttpResponseHeaders;
        body: string;
        bytesTransferred: number;
    }
    Index
    statusCode: number

    Real HTTP status, including non-2xx statuses.

    Lowercase, duplicate-preserving response headers.

    body: string

    Response body decoded as UTF-8, bounded by the same one-eighth-of-heap budget HTTP.SendRequest uses.

    bytesTransferred: number

    Upload bytes streamed from the source file.