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

    Interface GetUploadUrlResponse

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

    interface GetUploadUrlResponse {
        authorizationToken: string;
        bucketId: BucketId;
        uploadUrl: string;
    }
    Index

    Properties

    authorizationToken: string

    Authorization token to include in the upload request.

    bucketId: BucketId

    Bucket this upload URL targets.

    uploadUrl: string

    URL to POST file data to.