@backblaze-labs/b2-sdk - v0.1.0
    Preparing search index...

    Interface GetUploadPartUrlResponse

    Response from the b2_get_upload_part_url API call. Contains a one-time part upload URL and auth token.

    interface GetUploadPartUrlResponse {
        authorizationToken: string;
        fileId: LargeFileId;
        uploadUrl: string;
    }
    Index

    Properties

    authorizationToken: string

    Authorization token to include in the part upload request.

    fileId: LargeFileId

    ID of the large file this upload URL targets.

    uploadUrl: string

    URL to POST part data to.